:root {
  /* Matches config/channels.py brand_colors + fonts for KnowYourRightsNow. */
  --color-primary: #CC0000;
  --color-secondary: #FFFFFF;
  --color-accent: #1A1A1A;
  --font-title: "Archivo Black", "Arial Black", sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

@font-face {
  font-family: "Archivo Black";
  src: url("fonts/ArchivoBlack-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--color-secondary);
  color: var(--color-accent);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

.page {
  max-width: 480px;
  margin: 0 auto;
  padding: 32px 20px 48px;
}

.hero {
  text-align: center;
  margin-bottom: 32px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 12px;
}

/* Host credibility block — photo, name, tagline — same "who's talking to
   me" pattern as the ebook cover's author block, so a viewer who just
   watched the video recognizes the same person here. */
.host-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 20px;
}

.host-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-primary);
  flex-shrink: 0;
}

.host-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.host-name {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.3;
}

.host-tagline {
  font-size: 13px;
  color: #666;
  line-height: 1.3;
}

h1 {
  font-family: var(--font-title);
  font-size: clamp(28px, 7vw, 36px);
  line-height: 1.15;
  margin: 0 0 12px;
}

.subhead {
  font-size: 17px;
  line-height: 1.5;
  color: #444;
  /* Matches the paid-offer section's body-to-bullets gap (.section-description's
     16px bottom margin), so the two sections' spacing reads the same. */
  margin: 0 0 16px;
}

/* Benefit list (free offer) and What's Inside list (paid offer) share the
   same "checkmark line item" look — a quick, scannable value list. */
.benefit-list,
.whats-inside-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.benefit-list li,
.whats-inside-list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.4;
  color: #333;
}

.benefit-list li::before,
.whats-inside-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.whats-inside-list {
  margin-bottom: 20px;
}

.offer-cover {
  display: block;
  max-width: 200px;
  width: 60%;
  margin: 0 auto 32px;
  border: 1px solid #eee;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.signup {
  margin-bottom: 40px;
}

#signup-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* 16px+ font-size on inputs avoids iOS Safari auto-zoom on focus; 52px
   height keeps every tap target comfortably above the ~44px minimum. */
input[type="email"] {
  height: 52px;
  padding: 0 16px;
  font-size: 16px;
  border: 2px solid #ddd;
  border-radius: 8px;
}
input[type="email"]:focus {
  outline: none;
  border-color: var(--color-primary);
}

button {
  height: 52px;
  border: none;
  border-radius: 8px;
  background: var(--color-primary);
  color: var(--color-secondary);
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
}
button:disabled {
  opacity: 0.6;
  cursor: default;
}

#form-message {
  min-height: 20px;
  font-size: 14px;
  color: var(--color-primary);
  margin: 0;
}

.success {
  text-align: center;
  padding: 24px;
  border: 2px solid var(--color-primary);
  border-radius: 12px;
}
.success p {
  margin: 0 0 16px;
  font-weight: 600;
}

.button-secondary {
  display: inline-block;
  height: 48px;
  line-height: 48px;
  padding: 0 24px;
  border-radius: 8px;
  background: var(--color-accent);
  color: var(--color-secondary);
  text-decoration: none;
  font-weight: 700;
}

.links,
.paid-offer,
.deep-dives {
  margin-bottom: 40px;
}
.links h2,
.paid-offer h2,
.deep-dives h2 {
  font-family: var(--font-title);
  font-size: 20px;
  margin: 0 0 8px;
}

/* Paid-offer and affiliate-links section headings/body match the
   free-offer hero's h1/subhead exactly (font type + size), so every
   section reads as one consistent voice instead of some looking like a
   lesser afterthought. */
.paid-offer h2,
.links h2 {
  font-size: clamp(28px, 7vw, 36px);
  line-height: 1.15;
}

.section-description {
  font-size: 14px;
  line-height: 1.5;
  color: #555;
  margin: 0 0 16px;
}

.paid-offer .section-description,
.links .section-description {
  font-size: 17px;
  line-height: 1.5;
  color: #444;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-link {
  display: flex;
  flex-direction: column;
  border: 2px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: var(--color-accent);
  font-weight: 600;
}
.card-link:active {
  border-color: var(--color-primary);
}

.card-link img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.card-link .card-body {
  padding: 16px;
  min-height: 48px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
}

.card-link .card-description {
  font-size: 13px;
  font-weight: 400;
  opacity: 0.85;
}

.card-link .card-label {
  display: block;
}

/* Product/checkout cards get the brand-color treatment so they read as
   the primary purchase action, not just another link in the list. */
.card-link--product {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-secondary);
  text-align: center;
}
.card-link--product .card-label {
  font-size: 17px;
  font-weight: 700;
}

.footer {
  text-align: left;
  font-size: 12px;
  line-height: 1.5;
  color: #999;
  margin-top: 48px;
}

.footer p {
  white-space: pre-line;
  margin: 0;
}

.hidden {
  display: none !important;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
