@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap");

:root {
  color-scheme: dark;
  --bg: #0b0a10;
  --panel: #141423;
  --panel-strong: #1d1d31;
  --ink: #f3f2f0;
  --muted: #c2bdc4;
  --accent: #ff5c5c;
  --accent-2: #f6b75f;
  --accent-3: #49d9ff;
  --outline: rgba(255, 255, 255, 0.12);
  --shadow: rgba(7, 6, 14, 0.6);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  background: radial-gradient(
      circle at top,
      rgba(255, 92, 92, 0.18),
      transparent 55%
    ),
    radial-gradient(
      circle at 30% 20%,
      rgba(73, 217, 255, 0.18),
      transparent 50%
    ),
    linear-gradient(135deg, #07060c 0%, #0b0a10 50%, #131225 100%);
  color: var(--ink);
  min-height: 100vh;
}

.ambient {
  position: fixed;
  inset: 0;
  background: url("../media/21b9f2239e2fee506651dad2c659a1c7.avif") center/cover
    no-repeat;
  opacity: 0.08;
  mix-blend-mode: screen;
  pointer-events: none;
}

h1,
h2,
h3,
.stat {
  font-family: "Inter", "Segoe UI", sans-serif;
  letter-spacing: 0.01em;
}

.brand-copy h1 {
  margin-top: 0;
  margin-bottom: 0;
}

p {
  line-height: 1.7;
  color: var(--muted);
}

.site-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 2.5rem 6vw 1rem;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand-mark {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  color: #120c16;
  font-weight: 700;
  border-radius: 20px;
  box-shadow: 0 20px 40px var(--shadow);
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  margin: 0 0 0.3rem;
  color: var(--accent-2);
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

button {
  border: none;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  font-family: "Inter", "Segoe UI", sans-serif;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1a0f0f;
  box-shadow: 0 20px 40px rgba(255, 92, 92, 0.35);
}

button.ghost {
  background: transparent;
  border: 1px solid var(--outline);
  color: var(--ink);
}

button:hover {
  transform: translateY(-2px);
}

main {
  padding: 0 6vw 5rem;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
  padding: 1rem 0 3rem;
}

.lede {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.info-card {
  background: rgba(20, 20, 35, 0.8);
  border: 1px solid var(--outline);
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 40px var(--shadow);
  animation: float-in 0.9s ease both;
}

.info-card:nth-child(2) {
  animation-delay: 0.15s;
}

.hero-media {
  display: grid;
  gap: 1.5rem;
}

.media-frame {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--outline);
  box-shadow: 0 30px 60px var(--shadow);
}

.media-frame video {
  width: 100%;
  display: block;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.stat-strip div {
  background: rgba(29, 29, 49, 0.8);
  border-radius: 18px;
  padding: 1rem 1.2rem;
  border: 1px solid var(--outline);
}

.stat {
  margin: 0 0 0.3rem;
  color: var(--ink);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

.panel {
  background: rgba(20, 20, 35, 0.7);
  border-radius: 24px;
  border: 1px solid var(--outline);
  padding: 2rem;
}

.art-panel img {
  width: 100%;
  border-radius: 18px;
  display: block;
}

.feature-list {
  display: grid;
  gap: 1.2rem;
  margin-top: 2rem;
}

.feature {
  border-left: 3px solid var(--accent-3);
  padding-left: 1rem;
}

.gallery {
  margin: 4rem 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.shot {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--outline);
  box-shadow: 0 20px 40px var(--shadow);
  transform: translateY(0);
  transition: transform 0.2s ease;
}

.shot img {
  width: 100%;
  display: block;
}

.shot:hover {
  transform: translateY(-6px);
}

.requirements {
  margin: 4rem 0;
}

.req-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.req-card {
  background: rgba(29, 29, 49, 0.85);
  border: 1px solid var(--outline);
  border-radius: 20px;
  padding: 1.8rem;
}

.req-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.6rem;
  color: var(--muted);
}

.download-btn {
  margin-top: 1.4rem;
  width: 100%;
  background: linear-gradient(135deg, var(--accent-3), var(--accent-2));
  color: #0f0c12;
  font-weight: 600;
}

.strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin: 4rem 0 2rem;
}

.strip-card {
  background: rgba(20, 20, 35, 0.8);
  border-radius: 20px;
  border: 1px solid var(--outline);
  padding: 1.8rem;
}

.strip-card img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

.site-footer {
  padding: 2rem 6vw 3rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid var(--outline);
  background: rgba(7, 6, 12, 0.8);
}

.footer-mark {
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  color: var(--accent-2);
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 12, 0.75);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 10;
  overflow-y: auto;
  padding: 3rem 6vw;
}

.modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: rgba(20, 20, 35, 0.96);
  border: 1px solid var(--outline);
  border-radius: 20px;
  padding: 2rem;
  width: min(90vw, 880px);
  box-shadow: 0 30px 60px var(--shadow);
  position: relative;
  margin: 0 auto;
}

.modal-content h2 {
  margin-top: 0;
}

.modal .panel {
  background: rgba(20, 20, 35, 0.8);
  border-radius: 18px;
  padding: 1.8rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--outline);
  box-shadow: 0 18px 40px var(--shadow);
}

.modal .muted {
  color: var(--muted);
  font-size: 0.98rem;
  margin-bottom: 1rem;
}

.modal .steps {
  padding-left: 20px;
  margin: 1.2rem 0 1.6rem;
}

.modal .steps li {
  margin-bottom: 0.9rem;
  line-height: 1.6;
  color: var(--ink);
}

.modal .steps strong {
  color: var(--accent-2);
  font-weight: 600;
}

.modal .video-art {
  margin-top: 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--outline);
  overflow: hidden;
  background: #000;
}

.modal .video-art video {
  width: 100%;
  display: block;
}

.video-art video {
  aspect-ratio: 16/9;
}

.fade-in-delay-1 {
  animation: float-in 0.6s ease both;
  animation-delay: 0.1s;
}

.fade-in-delay-2 {
  animation: float-in 0.6s ease both;
  animation-delay: 0.2s;
}

.copyable {
  position: relative;
  margin-top: 1.5rem;
}

.copyable .highlight {
  margin: 0;
  padding: 0.75rem 1.2rem 1rem;
  background: rgba(8, 8, 14, 0.7);
  border-radius: 14px;
  border: 1px solid var(--outline);
  overflow: auto;
}

.highlight-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.highlight-head p {
  margin: 0;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.copyable pre {
  margin: 0;
  font-family: "Courier New", monospace;
  color: var(--ink);
  font-size: 0.9rem;
}

.copy-btn {
  padding: 0.45rem 0.8rem;
  font-size: 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--ink);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 2rem 5vw 1rem;
  }

  main {
    padding: 0 5vw 4rem;
  }

  .hero-actions {
    width: 100%;
  }

  button {
    width: 100%;
  }
}
