:root {
  --bg: #0b0d12;
  --bg-soft: #12151c;
  --bg-card: #181c26;
  --fg: #e9edf4;
  --fg-dim: #98a3b7;
  --accent: #7bb4ff;
  --accent-2: #5ce1a6;
  --border: #252b38;
  --radius: 14px;
  --radius-lg: 20px;
  --max-width: 1120px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  background: radial-gradient(1200px 600px at 20% -10%, #1a2235 0%, var(--bg) 60%) no-repeat, var(--bg);
  color: var(--fg);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 56px 24px 96px;
}

/* --- Hero --- */
.hero {
  padding: 40px 0 64px;
}
.logo {
  display: inline-block;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 48px;
}
.hero h1 {
  font-size: 58px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0 0 20px;
  max-width: 820px;
}
.tagline {
  font-size: 20px;
  line-height: 1.55;
  color: var(--fg-dim);
  max-width: 680px;
  margin: 0 0 36px;
}
.cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.1s ease, opacity 0.15s ease;
}
.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0b0f17;
}
.btn.ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border);
}
.btn:hover { transform: translateY(-1px); }

/* --- Section framing --- */
section {
  margin-top: 80px;
}
section h2 {
  font-size: 34px;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  font-weight: 700;
}
.section-lede {
  font-size: 17px;
  color: var(--fg-dim);
  line-height: 1.55;
  max-width: 760px;
  margin: 0 0 32px;
}

/* --- Gallery --- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.sample {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.sample video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: black;
  display: block;
}
.sample-meta {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sample-meta .addr {
  font-weight: 600;
  font-size: 15px;
}
.sample-meta .sub {
  font-size: 13px;
  color: var(--fg-dim);
}
.sample-meta .tags {
  display: flex;
  gap: 6px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.tag {
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--fg-dim);
  border: 1px solid var(--border);
}
.placeholder {
  grid-column: 1 / -1;
  padding: 48px;
  text-align: center;
  color: var(--fg-dim);
  background: var(--bg-card);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
}

/* --- How it works --- */
.cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.col {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.col h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 600;
  color: var(--accent);
}
.col p {
  margin: 0;
  color: var(--fg-dim);
  line-height: 1.55;
  font-size: 14px;
}

/* --- Pitch section --- */
.pitch {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-top: 80px;
}
.pitch p {
  max-width: 720px;
  line-height: 1.6;
  color: var(--fg-dim);
}
.pitch strong { color: var(--fg); }
.pitch .contact { margin-top: 28px; }

/* --- Footer --- */
.footer {
  margin-top: 80px;
  color: var(--fg-dim);
  font-size: 12px;
  text-align: center;
}

/* --- Responsive --- */
@media (max-width: 640px) {
  .hero h1 { font-size: 38px; }
  .tagline { font-size: 17px; }
  .wrap { padding: 32px 18px 64px; }
  section h2 { font-size: 26px; }
}
