:root {
  --bg: #0a0a0c;
  --bg-elev: #131317;
  --bg-elev-2: #1b1b22;
  --line: #2a2a33;
  --text: #f5f5f7;
  --text-dim: #a8a8b3;
  --text-muted: #7a7a85;
  --accent: #ff3b30;
  --accent-hot: #ff5a4d;
  --accent-soft: rgba(255, 59, 48, 0.12);
  --radius: 10px;
  --radius-lg: 14px;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  --container: 1120px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body {
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(255, 59, 48, 0.18), transparent 60%),
    radial-gradient(700px 400px at -10% 10%, rgba(255, 90, 77, 0.10), transparent 60%),
    var(--bg);
  min-height: 100vh;
}

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

a { color: inherit; }
a:hover { color: var(--accent-hot); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(10, 10, 12, 0.7);
  border-bottom: 1px solid var(--line);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}
.brand-mark {
  width: 18px;
  height: 18px;
  background: var(--bg);
  border: 2px solid var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--accent), inset 0 0 6px rgba(255, 59, 48, 0.4);
}
.brand-name {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.08em;
  font-size: 1.05rem;
}
.header-cta {
  text-decoration: none;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  transition: border-color .15s ease, background .15s ease;
}
.header-cta:hover { border-color: var(--accent); background: var(--accent-soft); color: var(--text); }

/* Hero */
.hero {
  padding: 64px 0 48px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 700;
  margin: 0 0 16px;
}
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.01em;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 0.98;
  margin: 0 0 24px;
}
.accent { color: var(--accent); }
.lede {
  font-size: 1.08rem;
  color: var(--text-dim);
  max-width: 540px;
  margin: 0 0 28px;
}
.hero-bullets {
  display: grid;
  gap: 10px;
  margin-bottom: 32px;
}
.hero-bullets > div {
  padding-left: 18px;
  position: relative;
  color: var(--text-dim);
  font-size: 0.86rem;
  line-height: 1.5;
}
.hero-bullets > div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
}
.hero-bullets strong { color: var(--text); font-weight: 600; }

.hero-btn { margin-top: 4px; }

/* Hero sample reel */
.hero-reel {
  margin: 8px 0 0;
  padding: 0;
  position: relative;
}
.hero-reel-video,
.hero-reel-placeholder {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-reel-video { object-fit: cover; background: #000; }
.hero-reel-placeholder {
  background:
    radial-gradient(circle at center, rgba(255, 59, 48, 0.14), transparent 60%),
    var(--bg-elev);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.hero-reel-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent);
  border-radius: 50%;
  font-size: 1.4rem;
  color: var(--accent);
  box-shadow: 0 0 28px rgba(255, 59, 48, 0.35);
  padding-left: 4px;
  margin-bottom: 6px;
}
.hero-reel-text {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.12em;
  font-size: 1.3rem;
  color: var(--text);
}
.hero-reel-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-reel-caption {
  margin: 12px 2px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.98rem;
  transition: transform .08s ease, background .15s ease, border-color .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 8px 24px rgba(255, 59, 48, 0.35);
}
.btn-primary:hover { background: var(--accent-hot); color: white; }
.btn-lg { padding: 16px 28px; font-size: 1.05rem; }

/* Tier preview card (in hero) */
.tiers {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}
.tiers h2 {
  margin: 0 0 16px;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.tier-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.tier-list li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-elev-2);
  position: relative;
}
.tier-list li[hidden] { display: none; }
.tier-list-aux { margin-top: 10px; }

/* Divider between the toggled tiers and the standalone Highlights tile */
.tier-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 6px;
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.tier-divider::before,
.tier-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.tier-list .tier-name {
  font-weight: 600;
  font-size: 1rem;
}
.tier-list .tier-price {
  position: absolute;
  top: 14px;
  right: 16px;
  font-weight: 700;
  color: var(--accent);
}
.tier-list .tier-desc {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-top: 4px;
}
.tier-featured {
  border-color: var(--accent) !important;
  background: linear-gradient(180deg, rgba(255, 59, 48, 0.10), transparent) var(--bg-elev-2) !important;
}
.tier-badge {
  position: absolute;
  top: -10px;
  left: 14px;
  background: var(--accent);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
}

/* Section heads */
.section-head {
  text-align: center;
  margin-bottom: 36px;
}
.section-head h2 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0 0 8px;
}
.section-head p {
  color: var(--text-dim);
  margin: 0;
}

/* Order form */
.order {
  padding: 56px 0;
}
.clip-form {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}
fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 28px;
}
fieldset:last-of-type { margin-bottom: 16px; }
legend {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-size: 0.95rem;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
  width: 100%;
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.row:last-child { margin-bottom: 0; }

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field span {
  font-size: 0.86rem;
  color: var(--text-dim);
  font-weight: 500;
}
.field em {
  color: var(--accent);
  font-style: normal;
}
.field small {
  color: var(--text-muted);
  font-weight: 400;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  font-size: 0.98rem;
  font-family: inherit;
  transition: border-color .15s ease, box-shadow .15s ease;
}
textarea { resize: vertical; min-height: 80px; }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
select:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Category toggle (segmented control) — Track / Field */
.category-toggle,
.hero-cat-toggle {
  display: inline-flex;
  padding: 4px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero-cat-toggle { margin-bottom: 14px; }
.cat-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 22px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dim);
  cursor: pointer;
  user-select: none;
  transition: background .15s ease, color .15s ease;
}
.cat-btn input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.cat-btn:hover { color: var(--text); }
.cat-btn:has(input:checked) {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 14px rgba(255, 59, 48, 0.35);
}

/* Tier picker */
.tier-picker {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.tier-card {
  position: relative;
  display: block;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-elev-2);
  padding: 16px 18px;
  transition: border-color .15s ease, background .15s ease, transform .08s ease;
}
.tier-card[hidden] { display: none; }
.tier-card-wide { grid-column: 1 / -1; }
.tier-card:hover { border-color: var(--accent-hot); }
.tier-card input[type="checkbox"],
.tier-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.tier-card:has(input:checked) {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(255, 59, 48, 0.10), transparent) var(--bg-elev-2);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.tier-card:has(input:checked)::after {
  content: "✓";
  position: absolute;
  top: 10px;
  right: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.tier-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-right: 30px;
}
.tier-card-name {
  font-weight: 600;
  font-size: 1rem;
}
.tier-card-price {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.05rem;
}
.tier-card p {
  margin: 6px 0 0;
  color: var(--text-dim);
  font-size: 0.88rem;
}

/* Disclaimers list under tier picker */
.disclaimers {
  list-style: none;
  margin: 18px 0 0;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 8px;
}
.disclaimers li {
  font-size: 0.84rem;
  color: var(--text-dim);
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}
.disclaimers li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.disclaimers strong { color: var(--text); font-weight: 600; }

/* Submit row */
.submit-row {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.submit-row .btn { width: 100%; max-width: 360px; }
.fineprint {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 520px;
}

/* Trust strip */
.trust {
  padding: 40px 0 80px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.trust h3 {
  font-size: 1rem;
  margin: 0 0 6px;
}
.trust p {
  color: var(--text-dim);
  margin: 0;
  font-size: 0.94rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 20px 0;
  color: var(--text-muted);
  font-size: 0.86rem;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-links {
  display: flex;
  gap: 18px;
}
.footer-links a {
  text-decoration: none;
  color: var(--text-muted);
  transition: color .15s ease;
}
.footer-links a:hover { color: var(--accent-hot); }

/* Legal pages (Privacy / Terms) */
.legal { padding: 56px 0 80px; }
.legal-body { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.legal-head { margin-bottom: 32px; }
.legal-head h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: 0.02em;
  margin: 0 0 8px;
}
.legal-meta {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.88rem;
}
.legal-body section { margin-bottom: 8px; }
.legal-body h2 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.06em;
  font-size: 1.3rem;
  color: var(--accent);
  margin: 32px 0 12px;
}
.legal-body p,
.legal-body li {
  color: var(--text-dim);
  font-size: 0.96rem;
  line-height: 1.65;
}
.legal-body p { margin: 0 0 14px; }
.legal-body ul { margin: 0 0 14px; padding-left: 22px; }
.legal-body li { margin: 0 0 6px; }
.legal-body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-body a:hover { color: var(--accent-hot); }
.legal-body strong { color: var(--text); font-weight: 600; }

/* Hero tier list — info only */
.tier-hint {
  margin: 0 0 14px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.tier-cta {
  display: block;
  text-align: center;
  margin-top: 18px;
  width: 100%;
}

/* Responsive */
@media (max-width: 900px) {
  .hero { padding: 40px 0 24px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .tiers { order: 2; }
  .row { grid-template-columns: 1fr; gap: 14px; }
  .tier-picker { grid-template-columns: 1fr; }
  .tier-card-wide { grid-column: auto; }
  .trust-grid { grid-template-columns: 1fr; gap: 20px; }
  .clip-form { padding: 22px; }
  .footer-row { flex-direction: column; gap: 6px; }
  .category-toggle, .hero-cat-toggle { display: flex; width: 100%; }
  .cat-btn { flex: 1; }
}
