:root {
  --bg: #0a0b10;
  --bg-2: #0e1016;
  --surface: #14171f;
  --surface-2: #1a1e29;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --ink: #f2f4f8;
  --muted: #9aa3b5;
  --accent: #9b3652;
  --accent-hover: #ad4564;
  --accent-soft: rgba(155, 54, 82, 0.14);
  --accent-ink: #ffffff;
  --brand-blades: #e0556f;
  --brand-edge: #d8a95c;
  --danger-bg: rgba(255, 92, 92, 0.12);
  --danger-ink: #ff8f8f;
  --danger-line: rgba(255, 92, 92, 0.3);
  --note-bg: rgba(155, 54, 82, 0.12);
  --note-ink: #e6a6b6;
  --note-line: rgba(155, 54, 82, 0.30);
  --font-display: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --radius: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(80% 60% at 50% -10%, rgba(155, 54, 82, 0.08), transparent 60%),
    var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: none; }

h1, h2, h3 { font-family: var(--font-display); letter-spacing: -0.02em; line-height: 1.12; }
h1, h2, h3 { color: var(--ink); }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  background: rgba(10, 11, 16, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 1.1rem;
  color: var(--ink);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: var(--accent);
  color: var(--accent-ink);
}
.brand-mark svg { width: 13px; height: 13px; margin-left: 2px; }

.brand-blades { color: var(--brand-blades); }
.brand-edge { color: var(--brand-edge); }

.site-header nav { display: flex; align-items: center; gap: 1.1rem; }
.site-header nav a:not(.button) { color: var(--muted); font-weight: 500; }
.site-header nav a:not(.button):hover { color: var(--ink); }

.inline { display: inline; margin: 0; }

.link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
}
.link:hover { color: var(--ink); }

/* ---------- buttons ---------- */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease, transform 0.05s ease;
}
.button:hover { border-color: var(--accent); }

.button-primary {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
  box-shadow: 0 10px 30px -10px rgba(155, 54, 82, 0.45);
}
.button-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.button-lg { padding: 0.85rem 2rem; font-size: 1.05rem; border-radius: 12px; }

/* ---------- layout ---------- */

.container { max-width: 720px; margin: 0 auto; padding: 2rem 1.5rem; }

.hero {
  position: relative;
  padding: 5rem 1.5rem 1rem;
  text-align: center;
  overflow: hidden;
}

.hero-inner { position: relative; max-width: 760px; margin: 0 auto; }

.eyebrow {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(155, 54, 82, 0.30);
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  margin: 1.25rem auto 0;
  max-width: 18ch;
}

.hero .lead {
  font-size: 1.18rem;
  color: var(--muted);
  margin: 1.1rem auto 1.75rem;
  max-width: 44ch;
}

.hero-cta { display: flex; justify-content: center; align-items: center; gap: 0.9rem; flex-wrap: wrap; }

.trust { color: var(--muted); font-size: 0.85rem; margin-top: 1.1rem; }

/* ---------- mock clip card ---------- */

.clip-card {
  max-width: 760px;
  margin: 3rem auto 0;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  background: var(--surface);
  overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.85);
}

.clip-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--line);
}

.chip {
  background: var(--accent-soft);
  color: var(--accent);
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.clip-dim { color: var(--muted); font-size: 0.82rem; }

.clip-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(120% 120% at 25% 0%, #1c2130, #0c0e15 60%);
}

.clip-hud {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.75rem;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.55);
  padding: 0.3rem 0.65rem;
  border-radius: 8px;
}
.clip-hud strong { color: #fff; font-weight: 600; }

.play {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 50px rgba(155, 54, 82, 0.5);
}
.play svg { width: 30px; height: 30px; margin-left: 4px; }

.clip-bar { height: 4px; background: var(--surface-2); }
.clip-bar span { display: block; height: 100%; width: 64%; background: var(--accent); }

/* ---------- sections ---------- */

.section { padding-top: 3.5rem; padding-bottom: 1rem; }

.section-head { text-align: center; margin-bottom: 2.25rem; }
.section-head h2 { font-size: clamp(1.7rem, 4vw, 2.3rem); margin: 0.85rem 0 0.5rem; }
.section-head p { margin: 0 auto; max-width: 46ch; color: var(--muted); }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
}
.feature:hover { border-color: var(--line-strong); }

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 0.9rem;
}
.feature-icon svg { width: 21px; height: 21px; }

.feature h3 { font-size: 1.05rem; margin: 0 0 0.35rem; }
.feature p { margin: 0; color: var(--muted); font-size: 0.92rem; }

/* ---------- video embed ---------- */

.video-frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
  border: 1px solid var(--line);
}
.video-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- cta band ---------- */

.cta-band {
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 20px;
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(155, 54, 82, 0.12), transparent 60%),
    var(--surface);
}
.cta-band h2 { font-size: clamp(1.6rem, 4vw, 2.1rem); margin: 0 0 0.4rem; }
.cta-band p { color: var(--muted); margin: 0 0 1.5rem; }

/* ---------- footer ---------- */

.site-footer { border-top: 1px solid var(--line); margin-top: 3rem; }

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 2.25rem 1.5rem 2.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}

.footer-links { display: flex; gap: 1.4rem; }
.footer-links a { color: var(--muted); font-size: 0.9rem; }
.footer-links a:hover { color: var(--ink); }

/* ---------- forms / cards ---------- */

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
}
.card h2 { margin-top: 0; }

label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin: 1.1rem 0 0.4rem;
}

input[type="email"], input[type="text"] {
  width: 100%;
  padding: 0.7rem 0.85rem;
  font: inherit;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--bg-2);
}
input::placeholder { color: var(--muted); }
input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }

.form-actions { margin-top: 1.5rem; }

.error {
  background: var(--danger-bg);
  color: var(--danger-ink);
  border: 1px solid var(--danger-line);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.note {
  background: var(--note-bg);
  color: var(--note-ink);
  border: 1px solid var(--note-line);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.hint { color: var(--muted); font-size: 0.88rem; margin-top: 1.1rem; }
.muted { color: var(--muted); }

/* ---------- dashboard ---------- */

.video-list { list-style: none; margin: 0; padding: 0; }
.video-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.video-list li:last-child { border-bottom: none; }
.video-list .title { font-weight: 600; }

.empty {
  text-align: center;
  padding: 3.5rem 1rem;
  color: var(--muted);
}
.empty p { margin: 0.25rem 0; }

video {
  width: 100%;
  max-height: 70vh;
  border-radius: 12px;
  background: #000;
}

/* ---------- responsive ---------- */

@media (max-width: 720px) {
  .grid-3 { grid-template-columns: 1fr; }
  .hero { padding-top: 3.5rem; }
  .site-header { padding: 0.75rem 1rem; }
}
