:root {
  --navy: #1a2a44;
  --gold: #d4af37;
  --teal: #00d4aa;
  --charcoal: #2a2a2a;
  --paper: #f4f6f9;
  --ink: #1a1a1a;
  --muted: rgba(255, 255, 255, 0.55);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--charcoal);
  color: #fff;
  line-height: 1.6;
  min-height: 100vh;
}

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

a:hover {
  text-decoration: underline;
}

.shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px 64px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(42, 42, 42, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.site-header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 3px;
  font-size: 22px;
  color: var(--gold);
}

.brand-sub {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

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

/* Hero */
.hero {
  padding: 56px 0 40px;
}

.hero-grid {
  display: grid;
  gap: 28px;
}

@media (min-width: 880px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }
}

.label {
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 8vw, 76px);
  line-height: 0.95;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.hero-title span.gold {
  color: var(--gold);
  display: block;
}

.hero-intro {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  margin-bottom: 24px;
}

.benefits-list {
  list-style: disc;
  margin-left: 18px;
  color: rgba(255, 255, 255, 0.82);
  display: grid;
  gap: 8px;
}

.accent-bar {
  width: 72px;
  height: 4px;
  background: var(--teal);
  margin-bottom: 22px;
}

.hero-card {
  background: var(--navy);
  border: 2px solid var(--gold);
  border-radius: 4px;
  padding: 22px 22px 20px;
}

.hero-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 10px;
}

.hero-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover:not(:disabled) {
  opacity: 0.92;
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-outline:hover:not(:disabled) {
  background: rgba(212, 175, 55, 0.12);
}

.btn-block {
  width: 100%;
}

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

/* Sections */
.section {
  padding: 40px 0;
}

.section-head {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 8px;
}

.section-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 28px;
  max-width: 640px;
}

.product-grid {
  display: grid;
  gap: 18px;
}

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  background: rgba(26, 42, 68, 0.65);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 4px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
}

.product-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--gold);
  line-height: 1.15;
}

.product-card .tagline {
  font-size: 13px;
  color: var(--teal);
  font-weight: 600;
}

.product-card p.desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  flex: 1;
}

.collection-tag {
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
}

.starting-price {
  color: #fff;
  font-size: 14px;
  margin-top: auto;
}

.placeholder-block {
  width: 100%;
  min-height: 120px;
  border: 1px dashed rgba(212, 175, 55, 0.6);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 12px;
  margin-bottom: 12px;
}

/* Hook band */
.hook-band {
  margin-top: 24px;
  background: var(--navy);
  border-left: 4px solid var(--teal);
  padding: 22px 22px 20px;
  border-radius: 4px;
}

.hook-band h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 8px;
}

.hook-band p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

/* Products page — tier tables */
.product-block {
  margin-bottom: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.product-block:last-child {
  border-bottom: none;
}

.product-block h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 6px;
}

.product-block .lead {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 18px;
  max-width: 720px;
}

.collection-group {
  margin-bottom: 36px;
}

.collection-head {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: 2px;
  color: #fff;
  margin: 0 0 14px;
}

.includes-list {
  margin: 0 0 18px 18px;
  color: rgba(255, 255, 255, 0.78);
  display: grid;
  gap: 4px;
}

.start-form {
  display: grid;
  gap: 12px;
  max-width: 620px;
}

.start-form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
}

.start-form input {
  width: 100%;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  padding: 10px 12px;
  font-size: 14px;
}

.contact-note {
  margin-top: 40px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.tier-row {
  display: grid;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .tier-row {
    grid-template-columns: 1fr 120px 160px;
  }
}

.tier-row:last-child {
  border-bottom: none;
}

.tier-name {
  font-weight: 700;
  color: #fff;
}

.tier-name small {
  display: block;
  font-weight: 400;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
}

.tier-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  color: var(--teal);
}

.tier-actions {
  display: flex;
  justify-content: flex-start;
}

@media (min-width: 720px) {
  .tier-actions {
    justify-content: flex-end;
  }
}

/* Success */
.success-panel {
  max-width: 560px;
  margin: 80px auto 40px;
  text-align: center;
  background: var(--navy);
  border: 2px solid var(--gold);
  border-radius: 4px;
  padding: 40px 28px;
}

.success-panel h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 12px;
}

.success-panel p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 24px;
}

.mono {
  font-family: ui-monospace, monospace;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  word-break: break-all;
}

.footer {
  padding: 32px 20px 48px;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}
