/* Jockey Jackpot — shared styles */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

:root {
  --bg: #0b0b0c;
  --bg-alt: #141416;
  --border: #2a1013;
  --border-light: #4a2a2f;
  --red: #d10a2c;
  --red-bright: #ff1a3d;
  --red-light: #ff5570;
  --link: #ff3355;
  --link-hover: #ff6680;
  --text: #e8e6e6;
  --text-heading: #f5f5f5;
  --text-heading-2: #f2f2f2;
  --text-muted: #b9b7b7;
  --text-muted-2: #c8c6c6;
  --text-dim: #9a9a9e;
  --text-dim-2: #8a8888;
  --text-faint: #5f5d5d;
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Lora', Georgia, serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
}

::selection { background: var(--red); color: #fff; }

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

details > summary { list-style: none; cursor: pointer; }
details > summary::-webkit-details-marker { display: none; }

.jj-plus::before { content: "+"; }
details[open] .jj-plus::before { content: "\2212"; }

.brand { font-family: var(--font-display); font-weight: 700; letter-spacing: 1px; color: var(--text-heading-2); }
.brand-accent { color: var(--red); }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: rgba(10, 10, 11, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}
.nav-brand { font-size: 22px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.nav-links a { color: var(--text-muted-2); }

/* Hero */
.hero { position: relative; }
.hero-image { width: 100%; display: block; object-fit: cover; max-height: 70vh; }
.hero-content { max-width: 800px; margin: 0 auto; text-align: center; padding: 56px 24px 72px; }
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.15;
  color: var(--text-heading);
  margin: 0 0 20px;
}
.hero-sub { font-size: 19px; line-height: 1.7; color: var(--text-muted); margin: 0 0 32px; }
.hero-highlight {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.5px;
  color: var(--red);
  margin: 0 0 24px;
  text-transform: uppercase;
}
.hero-image-slot-wrap { margin: 0 auto; max-width: 500px; }

/* Image slot (static replacement for the design tool's <image-slot>) */
.image-slot {
  width: 100%;
  display: block;
  background: #000;
}
.image-slot img { width: 100%; height: 100%; object-fit: contain; display: block; }
.image-slot--220 { height: 220px; }
.image-slot--300 { height: 300px; }
.image-slot--440 { height: 440px; }

/* Track record */
.track-record {
  background: var(--bg-alt);
  padding: 64px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.track-record-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.track-record-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-heading-2);
  margin: 0 0 16px;
}
.track-record-sub {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.5px;
  color: var(--red);
  margin: 0 0 32px;
  text-transform: uppercase;
}
.stat-grid { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.stat-box {
  border: 1px dashed var(--border-light);
  border-radius: 2px;
  padding: 28px 36px;
  min-width: 180px;
}
.stat-label { font-size: 13px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; }
.stat-value {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--red);
  margin-top: 8px;
}

/* Story */
.story { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.story-section { padding: 0 0 56px; }
.story-section:first-child { padding-top: 56px; }
.story-heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-heading-2);
  border-left: 4px solid var(--red);
  padding-left: 16px;
  margin: 0 0 28px;
}
.story-section p { font-size: 18px; line-height: 1.85; margin: 0 0 20px; }
.story-section p:last-child { margin-bottom: 0; }
.story-image-wrap { margin: 0 0 56px; }
.pull-quote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 24px;
  line-height: 1.5;
  color: var(--red-light);
  border-left: 3px solid var(--red);
  padding-left: 24px;
  margin: 0 0 28px;
}
.pull-quote--large { font-size: 28px; margin: 0; }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; padding: 72px 24px; }
.faq-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-heading-2);
  margin: 0 0 20px;
  text-align: center;
}
.faq-intro {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-muted-2);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 36px;
}
.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--text-heading-2);
}
.faq-plus { color: var(--red); font-size: 22px; margin-left: 16px; }
.faq-answer { font-size: 16px; line-height: 1.8; color: var(--text-muted-2); margin: 16px 0 0; }

/* Urgency */
.urgency { max-width: 760px; margin: 0 auto; padding: 64px 24px 0; text-align: center; }
.urgency-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-heading-2);
  margin: 0 0 28px;
}
.urgency p { font-size: 18px; line-height: 1.85; margin: 0 0 20px; text-align: left; }
.urgency-callout {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 700;
  font-size: 34px;
  line-height: 1.45;
  color: var(--red-bright);
  border-left: 3px solid var(--red);
  padding-left: 24px;
  margin: 0 0 20px;
  text-align: left;
}

/* Membership */
.membership { max-width: 920px; margin: 0 auto; padding: 72px 24px; text-align: center; }
.membership-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4.5vw, 44px);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-heading);
  margin: 0 0 16px;
}
.membership-sub { font-size: 18px; color: var(--text-muted); max-width: 560px; margin: 0 auto 40px; }
.plans { display: flex; gap: 32px; flex-wrap: wrap; justify-content: center; }
.plan-card {
  flex: 1 1 320px;
  max-width: 380px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 36px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.plan-card--featured {
  border: 2px solid var(--red);
  position: relative;
  box-shadow: 0 12px 32px rgba(209, 10, 44, 0.25);
}
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 2px;
}
.plan-kicker {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.plan-price { font-family: var(--font-display); font-weight: 700; font-size: 44px; color: var(--text-heading); margin-bottom: 4px; }
.plan-period { font-size: 14px; color: var(--text-dim-2); margin-bottom: 24px; }
.plan-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-heading-2);
  margin: 0 0 12px;
}
.plan-features { text-align: left; padding: 0; margin: 0 0 24px; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.plan-features li { display: flex; gap: 10px; font-size: 14px; color: var(--text-muted-2); }
.plan-features li::before { content: "\2713"; color: var(--red); }
.plan-cta {
  display: block;
  padding: 14px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  margin-top: auto;
}
.plan-cta--ghost { background: var(--border); border: 1px solid var(--red); color: var(--text-heading); }
.plan-cta--solid { background: var(--red); border: none; color: #fff; }
.plan-guarantee {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red-light);
  margin: 16px 0 0;
}

/* Footer */
.footer { border-top: 1px solid var(--border); padding: 40px 24px; }
.footer-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.footer-brand { font-size: 16px; margin-bottom: 20px; }
.footer-contact {
  display: inline-block;
  padding: 12px 28px;
  background: var(--border);
  border: 1px solid var(--red);
  color: var(--text-heading);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: 20px;
}
.footer-disclaimer { font-size: 13px; color: var(--text-dim-2); line-height: 1.7; max-width: 560px; margin: 0 auto 16px; }
.footer-disclaimer a { color: var(--red-light); }
.footer-copy { font-size: 12px; color: var(--text-faint); margin: 0; }

/* Opt-in pages */
.optin-header { text-align: center; padding: 96px 24px 32px; }
.optin-kicker {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.optin-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4.5vw, 44px);
  line-height: 1.15;
  color: var(--text-heading);
  margin: 0 0 20px;
}
.optin-sub { font-size: 18px; line-height: 1.7; color: var(--text-muted); max-width: 560px; margin: 0 auto; }
.optin-section { max-width: 440px; margin: 0 auto; padding: 24px 24px 96px; }
.optin-form {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.optin-form label {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dim);
}
.optin-form input {
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: 2px;
  color: var(--text-heading);
  font-size: 16px;
  font-family: var(--font-body);
}
.optin-form input::placeholder { color: #6f6d6d; }
.optin-form button {
  margin-top: 8px;
  padding: 16px;
  background: var(--red);
  color: #fff;
  border: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
}
.optin-note { font-size: 13px; color: var(--text-dim-2); text-align: center; margin: 20px 0 0; }

/* Thank you page */
.thanks-header { text-align: center; padding: 96px 24px 32px; }
.thanks-kicker {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.thanks-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.15;
  color: var(--text-heading);
  margin: 0 0 24px;
}
.thanks-sub { font-size: 19px; line-height: 1.7; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.thanks-section { max-width: 680px; margin: 0 auto; padding: 24px 24px 64px; }
.thanks-section-heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-heading-2);
  border-left: 4px solid var(--red);
  padding-left: 16px;
  margin: 0 0 28px;
}
.steps { display: flex; flex-direction: column; }
.step { display: flex; gap: 20px; margin-bottom: 28px; }
.step:last-child { margin-bottom: 0; }
.step-num { font-family: var(--font-display); font-weight: 700; font-size: 28px; color: var(--red); min-width: 40px; }
.step-text { font-size: 17px; line-height: 1.8; margin: 0; }
.thanks-signoff { text-align: center; padding: 0 24px 80px; }
.thanks-signoff p {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--red-light);
  max-width: 600px;
  margin: 0 auto;
}
