:root {
  /* Brand palette — cream field + mockup burgundy #7a1a1a + gold accents */
  --color-brand-burgundy: #7a1a1a;
  --font-hero: 'Barlow Condensed', 'Bebas Neue', sans-serif;
  --color-brand-gold: #f5b520;
  --color-highlight: #fdf6e3;
  --color-amber: #f5b520;
  --color-crimson: #c0392b;
  --color-burgundy: #8e1f1c;
  --color-bg: #f4f1ec;
  --color-surface: #ffffff;
  --color-elevated: #fafafa;
  --color-text: #1a1a1a;
  --color-text-muted: #3a3a3a;
  --color-win: #16a34a;
  --color-border: #ececec;
  --font-display: 'Bebas Neue', sans-serif;
  --font-sub: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: linear-gradient(180deg, #ffffff 0%, #f4f1ec 55%, #ffffff 100%);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

/* Front page: supplied artwork background */
body.home {
  background-color: #f3efe8;
  background-image:
    radial-gradient(ellipse 120% 80% at 18% 35%, rgba(255, 255, 255, 0.72) 0%, transparent 55%),
    url('../images/weeklywinners-background.jpg');
  background-size: cover, cover;
  background-position: center center, center top;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

/* Homepage: header sits over hero — transparent so background merges */
body.home .site-header {
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
  box-shadow: none;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

img, svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button, a.button {
  cursor: pointer;
}

button:focus, a.button:focus, input:focus, textarea:focus {
  outline: 3px solid rgba(122, 26, 26, 0.35);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  background: var(--color-surface);
  color: var(--color-brand-burgundy);
  z-index: 9999;
}

.site-contact-strip {
  background: var(--color-highlight);
  border-bottom: 1px solid var(--color-border);
  padding: 0.5rem max(1rem, env(safe-area-inset-left)) 0.5rem max(1rem, env(safe-area-inset-right));
  padding-top: max(0.5rem, env(safe-area-inset-top));
}

.site-contact-strip__inner {
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0.75rem;
  font-family: var(--font-sub);
  font-size: clamp(0.72rem, 2.8vw, 0.84rem);
  color: var(--color-text);
  line-height: 1.4;
}

.site-contact-strip__link {
  color: var(--color-text);
  font-weight: 500;
}

.site-contact-strip__link:hover {
  color: var(--color-brand-burgundy);
}

.site-contact-strip__sep {
  opacity: 0.4;
  user-select: none;
}

.site-contact-strip__sep::before {
  content: '\00B7';
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  padding-top: env(safe-area-inset-top, 0px);
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}

.page-slug-checkout .site-navigation {
  display: none;
}

.page-slug-checkout .site-header__inner {
  justify-content: flex-start;
}

.site-header__inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0.95rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-text);
}

.site-brand__logo {
  display: block;
  width: auto;
  height: 3.65rem;
  max-height: 4rem;
  object-fit: contain;
}

.site-footer__logo {
  display: block;
  width: auto;
  height: 3.25rem;
  max-height: 3.75rem;
  object-fit: contain;
  margin-bottom: 0.75rem;
}

.site-navigation {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-navigation__links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.site-navigation__links a {
  position: relative;
  color: var(--color-text-muted);
  font-family: var(--font-sub);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 180ms ease;
}

.site-navigation__links a:hover {
  color: var(--color-brand-burgundy);
}

.site-navigation__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--color-brand-burgundy), var(--color-brand-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-navigation__links a:hover::after {
  transform: scaleX(1);
}

.site-navigation__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(26, 26, 26, 0.45);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 2rem max(1.5rem, env(safe-area-inset-right)) max(2rem, env(safe-area-inset-bottom)) 1.5rem;
  margin-left: auto;
  width: min(90vw, 360px);
  background: var(--color-surface);
  border-left: 1px solid var(--color-border);
}

.mobile-menu__close {
  align-self: flex-end;
  border: none;
  background: transparent;
  color: var(--color-text);
  width: 3rem;
  height: 3rem;
}

.mobile-menu__nav {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.mobile-menu__nav a {
  display: inline-flex;
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: var(--color-elevated);
  color: var(--color-text);
  font-family: var(--font-sub);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  border-radius: 50px;
  padding: 0.85rem 1.6rem;
  font-family: var(--font-sub);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: transform 200ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 200ms cubic-bezier(0.16, 1, 0.3, 1),
              opacity 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.button--primary {
  background: linear-gradient(135deg, var(--color-brand-burgundy), #5c1414);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(122, 26, 26, 0.28);
}

.button--primary:hover {
  box-shadow: 0 8px 32px rgba(122, 26, 26, 0.38);
}

.button--secondary {
  background: var(--color-brand-gold);
  color: var(--color-brand-burgundy);
}

.button--ghost {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-brand-burgundy);
}

.button--ghost:hover {
  border-color: var(--color-brand-gold);
  background: var(--color-highlight);
}

.button--outline-gold {
  background: #ffffff;
  border: 1px solid var(--color-brand-gold);
  color: var(--color-brand-burgundy);
  box-shadow: 0 2px 12px rgba(26, 26, 26, 0.06);
}

.button--outline-gold:hover {
  border-color: var(--color-brand-burgundy);
  background: var(--color-highlight);
}

.button--outline-burgundy {
  background: #ffffff;
  border: 2px solid var(--color-brand-burgundy);
  color: var(--color-brand-burgundy);
  box-shadow: 0 2px 12px rgba(26, 26, 26, 0.06);
}

.button--outline-burgundy:hover {
  background: rgba(253, 246, 227, 0.85);
  border-color: #5c1414;
  color: #5c1414;
}

.button--xl {
  min-width: 220px;
}

.button--large {
  padding: 1rem 2rem;
}

.button--block {
  width: 100%;
}

.section {
  padding: 5.5rem 1.5rem;
}

.section--email-optin {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.section--edge {
  padding-top: 0;
}

.section--hero {
  position: relative;
  min-height: 100vh;
  padding-bottom: 5.5rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 14%, rgba(245, 181, 32, 0.18), transparent 38%),
    radial-gradient(circle at 8% 10%, rgba(142, 31, 28, 0.08), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #f4f1ec 55%, #ffffff 100%);
}

.section--hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 26, 26, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 26, 26, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 100% 80% at 50% 0%, black 20%, transparent 80%);
  pointer-events: none;
  opacity: 0.5;
}

.hero__content {
  position: relative;
  max-width: 860px;
  text-align: left;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  color: var(--color-brand-burgundy);
  font-family: var(--font-sub);
  font-size: 0.8rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 1.75rem;
  height: 1px;
  background: var(--color-brand-gold);
  flex-shrink: 0;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  line-height: 0.92;
  margin: 0 0 1.5rem;
  letter-spacing: 0.01em;
}

.hero h1 .text-amber {
  color: var(--color-brand-burgundy);
}

.hero p {
  color: var(--color-text-muted);
  max-width: 580px;
  font-size: 1.05rem;
  margin: 0 0 2.25rem;
}

.hero__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero__proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero__proof-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-sub);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-text-muted);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
}

.hero__proof-icon svg {
  width: 0.85rem;
  height: 0.85rem;
  fill: var(--color-brand-burgundy);
  flex-shrink: 0;
}

.section--marquee {
  background: var(--color-surface);
  overflow: hidden;
}

.marquee {
  overflow: hidden;
}

.marquee__track {
  display: flex;
  gap: 3rem;
  align-items: center;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.marquee__track span {
  color: var(--color-amber);
  font-family: var(--font-sub);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 600;
}

.marquee__track span.marquee__text--sentence {
  text-transform: none;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.marquee__track span::after {
  content: '·';
  margin-left: 3rem;
  opacity: 0.35;
}

@keyframes marquee {
  from {transform: translateX(0);} 
  to {transform: translateX(-50%);} 
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
  }
}

.section--dark {
  background: var(--color-elevated);
}

.section__intro {
  max-width: 960px;
  margin: 0 auto 2rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  background: var(--color-highlight);
  border: 1px solid var(--color-brand-gold);
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  color: var(--color-brand-burgundy);
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section__intro h2,
.section__intro h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.5vw, 4rem);
  line-height: 0.95;
  margin: 0;
  letter-spacing: 0.01em;
}

.section__intro p {
  color: var(--color-text-muted);
  margin-top: 1.1rem;
  font-size: 1.02rem;
  max-width: 640px;
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  max-width: 1220px;
  margin: 0 auto;
}

.feature-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 280ms cubic-bezier(0.16, 1, 0.3, 1),
              border-color 280ms ease;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 181, 32, 0.45), transparent);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.1);
  border-color: rgba(245, 181, 32, 0.35);
}

.feature-card h3 {
  font-family: var(--font-sub);
  font-size: 1.05rem;
  font-weight: 500;
  margin: 0 0 0.75rem;
  letter-spacing: 0.01em;
}

.feature-card__icon {
  width: 2.8rem;
  height: 2.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.8rem;
  background: var(--color-highlight);
  border: 1px solid rgba(245, 181, 32, 0.35);
  color: var(--color-brand-burgundy);
  margin-bottom: 1.25rem;
}

.feature-card__icon svg {
  width: 1.4rem;
  height: 1.4rem;
  fill: var(--color-brand-burgundy);
}

.feature-card h3 {
  font-family: var(--font-sub);
  margin: 0 0 1rem;
  font-size: 1.15rem;
}

.feature-card p {
  margin: 0;
  color: var(--color-text-muted);
}

.section--stats {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.stats-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1220px;
  margin: 0 auto;
}

.stat-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--color-border);
}

.stat-card:last-child {
  border-right: none;
}

.stat-card__value {
  font-family: var(--font-display);
  font-size: clamp(3rem, 4.5vw, 4.5rem);
  line-height: 1;
  color: var(--color-brand-burgundy);
  letter-spacing: 0.01em;
}

.stat-card p {
  margin: 0.5rem 0 0;
  color: var(--color-text-muted);
  font-size: 0.88rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.steps-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  max-width: 1220px;
  margin: 0 auto;
}

.step-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 2rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  transition: border-color 280ms ease, box-shadow 280ms ease;
}

.step-card:hover {
  border-color: rgba(245, 181, 32, 0.35);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.step-card__number {
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: rgba(245, 181, 32, 0.18);
  position: absolute;
  bottom: -0.5rem;
  right: 1rem;
  user-select: none;
}

.step-card h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-sub);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.step-card p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.section__cta {
  max-width: 1220px;
  margin: 2rem auto 0;
  text-align: center;
}

.section--results {
  background: transparent;
}

.results-list {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.result-row {
  display: grid;
  grid-template-columns: 120px 1fr 1fr 100px 100px;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.25rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-brand-gold);
  border-radius: 16px;
}

.result-row__badge .result-badge {
  justify-self: end;
}

.result-row:nth-child(odd) {
  background: var(--color-elevated);
}

.result-row__badge {
  justify-self: end;
}

.result-badge {
  display: inline-flex;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-badge--win {
  background: rgba(39,174,96,0.14);
  color: var(--color-win);
}

.result-badge--loss {
  background: rgba(192,57,43,0.14);
  color: var(--color-crimson);
}

.result-badge--nr {
  background: var(--color-border);
  color: var(--color-text-muted);
}

.section__summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1220px;
  margin: 1.5rem auto 0;
  gap: 1rem;
}

.section__summary p {
  color: var(--color-brand-burgundy);
  font-family: var(--font-sub);
  letter-spacing: 0.08em;
}

.testimonial-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  max-width: 1220px;
  margin: 0 auto;
  align-items: stretch;
}

.testimonial-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  transition: border-color 280ms ease, transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card:hover {
  border-color: rgba(245, 181, 32, 0.35);
  transform: translateY(-3px);
}

.testimonial-card::after {
  content: '\201C';
  position: absolute;
  top: -1rem;
  right: 1.5rem;
  font-family: Georgia, serif;
  font-size: 7rem;
  line-height: 1;
  color: rgba(245, 181, 32, 0.12);
  pointer-events: none;
  user-select: none;
}

.testimonial-card__stars {
  color: var(--color-amber);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.testimonial-card__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-brand-gold), #e6a61d);
  color: var(--color-brand-burgundy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.testimonial-card p {
  margin: 0 0 1.25rem;
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.65;
}

.testimonial-card__meta {
  align-self: end;
  color: var(--color-text-muted);
  font-family: var(--font-sub);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.section--pricing {
  background: var(--color-surface);
}

.pricing-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-brand-burgundy);
  border-radius: 32px;
  padding: 2.5rem;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.1);
}

.pricing-card__header {
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--color-border);
}

.pricing-card__price {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--color-brand-burgundy);
  margin: 0 0 0.25rem;
}

.pricing-card__price-alt {
  margin: 0 0 0.9rem;
  font-family: var(--font-sub);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-brand-burgundy);
}

.pricing-card__price-alt span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-card__price span {
  font-size: 1.1rem;
  font-family: var(--font-sub);
  font-weight: 500;
  color: var(--color-text-muted);
}

.pricing-card__features {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-text);
}

.pricing-card__features svg {
  width: 1rem;
  height: 1rem;
  fill: var(--color-brand-burgundy);
}

.pricing-card__link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--color-brand-burgundy);
  font-family: var(--font-sub);
}

.pricing-card__note {
  margin-top: 1rem;
  color: var(--color-text-muted);
}

.section--contact-bar {
  padding-top: 2.25rem;
  padding-bottom: 3rem;
  background: var(--color-surface);
}

.section--contact-bar.section--contact-bar--after-hero {
  padding-top: 1.75rem;
  padding-bottom: 2rem;
}

.contact-bar {
  max-width: 1220px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: var(--color-highlight);
  display: flex;
  gap: 0.9rem 1.25rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact-bar__label {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-sub);
  font-weight: 500;
}

.contact-bar__links {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.contact-bar__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(122, 26, 26, 0.2);
  background: #fff;
  color: var(--color-brand-burgundy);
  font-family: var(--font-sub);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-bar__links a:hover {
  background: var(--color-brand-burgundy);
  color: #fff;
}

.faq-accordion {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  transition: border-color 200ms ease;
}

.faq-item:has(.faq-item__question[aria-expanded="true"]) {
  border-color: rgba(245, 181, 32, 0.45);
}

.faq-item__question {
  width: 100%;
  border: none;
  background: transparent;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  font-family: var(--font-sub);
  font-size: 0.97rem;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease;
}

.faq-item__question:hover {
  color: var(--color-brand-burgundy);
}

.faq-item__icon svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: var(--color-brand-burgundy);
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item__question[aria-expanded="true"] .faq-item__icon svg {
  transform: rotate(90deg);
}

.faq-item__question[aria-expanded="true"] {
  color: var(--color-brand-burgundy);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition: max-height 340ms cubic-bezier(0.4, 0, 0.2, 1), padding 340ms cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item__answer.is-open {
  max-height: 400px;
  padding-bottom: 1.5rem;
}

.section--cta-mid {
  background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(245, 181, 32, 0.12), transparent 70%),
              var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}

.cta-mid {
  max-width: 700px;
  margin: 0 auto;
}

.cta-mid h2 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.5vw, 4rem);
  line-height: 0.95;
  margin: 0 0 1rem;
}

.cta-mid p {
  color: var(--color-text-muted);
  font-size: 1.02rem;
  margin: 0 0 2.25rem;
}

.section--cta-banner {
  background: linear-gradient(180deg, var(--color-elevated), rgba(245, 181, 32, 0.06));
  padding: 5.5rem 1.5rem;
}

.cta-banner {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: center;
  padding-top: 3rem;
  border-top: 1px solid var(--color-border);
}

.cta-banner h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.5vw, 4rem);
  line-height: 0.95;
}

.cta-banner p {
  color: var(--color-text-muted);
  font-size: 1.02rem;
  margin: 0;
}

.cta-banner__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 3.5rem 1.5rem 2rem;
}

.site-footer__top {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
  max-width: 1220px;
  margin: 0 auto;
}

.site-footer__optin {
  max-width: 1220px;
  margin: 2.5rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.site-footer__brand p,
.site-footer__bottom p {
  color: var(--color-text-muted);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer__links a {
  color: var(--color-text);
}

.site-footer__bottom {
  max-width: 1220px;
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer__credit {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.site-footer__credit a {
  color: var(--color-brand-burgundy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer__credit a:hover {
  color: #5c1414;
}

.checkout-hero__content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.section--checkout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2rem;
  max-width: 1220px;
  margin: 0 auto;
}

.checkout-summary {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 28px;
  padding: 2rem;
}

.checkout-summary h2 {
  margin-top: 0;
}

.checkout-summary__price {
  font-family: var(--font-display);
  font-size: 3rem;
  margin: 0.5rem 0 1.5rem;
}

.checkout-summary__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.checkout-summary__features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.checkout-summary__features svg {
  width: 1rem;
  height: 1rem;
  fill: var(--color-brand-burgundy);
}

.checkout-summary__trust {
  margin-top: 1.75rem;
  color: var(--color-text-muted);
}

.checkout-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 28px;
  padding: 2rem;
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: var(--color-elevated);
  color: var(--color-text);
  margin-bottom: 1rem;
}

.checkout-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-sub);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.checkout-form .pmpro_error,
.checkout-form .pmpro_message {
  margin-bottom: 1rem;
}

.pmpro_btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--color-brand-burgundy), #6f1715);
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 1rem;
  font-family: var(--font-sub);
  font-weight: 500;
}

.pmpro_checkout .validation_error {
  border-color: var(--color-crimson);
}

.ww-checkout-account-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1rem;
  row-gap: 0.25rem;
}

.ww-checkout-account-grid > .pmpro_checkout-field,
.ww-checkout-account-grid > .pmpro_form_field {
  min-width: 0;
}

.ww-checkout-account-grid .pmpro_checkout-field input,
.ww-checkout-account-grid .pmpro_form_field input {
  width: 100%;
}

@media (max-width: 767px) {
  .ww-checkout-account-grid {
    grid-template-columns: 1fr;
  }
}

.section--legal {
  padding-top: 4rem;
  padding-bottom: 5rem;
}

.legal-document {
  max-width: 760px;
  margin: 0 auto;
  padding: 2.25rem 1.75rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 24px;
}

.legal-document__header {
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.legal-document h1 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1;
}

.legal-document__updated {
  margin: 0;
  color: var(--color-text-muted);
  font-family: var(--font-sub);
  font-size: 0.92rem;
}

.legal-document__section {
  margin-top: 2rem;
}

.legal-document h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-sub);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.legal-document p,
.legal-document li {
  color: var(--color-text);
  font-size: 0.98rem;
  line-height: 1.7;
}

.legal-document p {
  margin: 0 0 1rem;
}

.legal-document ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.legal-document li + li {
  margin-top: 0.35rem;
}

.legal-document__contact {
  list-style: none;
  padding-left: 0;
}

.legal-document__contact a {
  color: var(--color-brand-burgundy);
  font-weight: 500;
}

.page-template-page-terms-and-conditions .legal-document,
.page-template-page-terms-and-conditions .legal-document h1,
.page-template-page-terms-and-conditions .legal-document h2,
.page-template-page-terms-and-conditions .legal-document p,
.page-template-page-terms-and-conditions .legal-document li {
  color: #1a1a1a;
}

.page-slug-terms-and-conditions .section--page-default,
.page-slug-privacy-policy .section--page-default {
  max-width: 760px;
  margin: 0 auto;
  padding: 2.25rem 1.75rem;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 24px;
}

.page-slug-terms-and-conditions .section--page-default,
.page-slug-terms-and-conditions .section--page-default h1,
.page-slug-terms-and-conditions .section--page-default h2,
.page-slug-terms-and-conditions .section--page-default h3,
.page-slug-terms-and-conditions .section--page-default p,
.page-slug-terms-and-conditions .section--page-default li,
.page-slug-privacy-policy .section--page-default,
.page-slug-privacy-policy .section--page-default h1,
.page-slug-privacy-policy .section--page-default h2,
.page-slug-privacy-policy .section--page-default h3,
.page-slug-privacy-policy .section--page-default p,
.page-slug-privacy-policy .section--page-default li {
  color: #1a1a1a !important;
}

.page-slug-terms-and-conditions .section--page-default a,
.page-slug-privacy-policy .section--page-default a {
  color: var(--color-brand-burgundy) !important;
}

.login-card {
  max-width: 520px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  text-align: center;
}

.login-card__form {
  margin-top: 1.5rem;
}

.login-card__note {
  margin-top: 1.5rem;
  color: var(--color-text-muted);
}

.dashboard {
  max-width: 1220px;
  margin: 0 auto;
}

.dashboard__hero {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.dashboard__grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
}

.dashboard__sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.dashboard-nav {
  display: grid;
  gap: 0.75rem;
}

.dashboard-nav a {
  display: block;
  padding: 0.95rem 1.25rem;
  border-radius: 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text);
}

.dashboard__info {
  background: var(--color-highlight);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 1.5rem;
}

.dashboard-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 2rem;
}

.dashboard-table {
  display: grid;
  gap: 0.75rem;
}

.dashboard-table__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 1rem;
  background: var(--color-elevated);
  border: 1px solid var(--color-border);
  border-radius: 16px;
}

.results-page .results-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.filter-pill {
  display: inline-flex;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  background: var(--color-surface);
  font-family: var(--font-sub);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.filter-pill.is-active {
  background: var(--color-brand-burgundy);
  color: #ffffff;
  border-color: var(--color-brand-burgundy);
}

.results-table-wrap {
  overflow-x: auto;
}

.results-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
}

.results-table th,
.results-table td {
  padding: 1rem 1rem;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
}

.results-table th {
  color: var(--color-text-muted);
  font-family: var(--font-sub);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
}

.results-preview {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.results-preview__cta {
  margin-top: 1.5rem;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1), transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0ms);
}

.animate-on-scroll[data-animate="fade-left"] {
  transform: translateX(-36px);
}

.animate-on-scroll[data-animate="fade-right"] {
  transform: translateX(36px);
}

.animate-on-scroll[data-animate="scale-up"] {
  transform: scale(0.93);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes amber-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(142, 31, 28, 0.35); }
  60% { box-shadow: 0 0 0 16px rgba(142, 31, 28, 0); }
}

.button--pulse {
  animation: amber-pulse 2.8s ease infinite;
}

.ww-honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  visibility: hidden;
}

@media (max-width: 1024px) {
  .section__intro h2,
  .section__intro h1 {
    font-size: clamp(2.4rem, 5vw, 3.2rem);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-card:nth-child(2) {
    border-right: none;
  }

  .stat-card:nth-child(3),
  .stat-card:nth-child(4) {
    border-top: 1px solid var(--color-border);
  }

  .section--checkout {
    grid-template-columns: 1fr;
  }

  .dashboard__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .site-header__inner {
    padding: 0.65rem max(1rem, env(safe-area-inset-left)) 0.65rem max(1rem, env(safe-area-inset-right));
  }

  .site-navigation__links,
  .site-header .button--primary {
    display: none;
  }

  .site-navigation__toggle {
    display: inline-flex;
  }

  .hero__proof-strip {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.25rem max(1rem, env(safe-area-inset-left)) 3.25rem max(1rem, env(safe-area-inset-right));
  }

  .section--hero {
    min-height: calc(100vh - 56px);
    min-height: calc(100dvh - 56px);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid,
  .steps-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .section__summary {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-banner {
    grid-template-columns: 1fr;
  }

  .cta-banner__actions {
    width: 100%;
  }

  .cta-banner__actions .button {
    width: 100%;
    justify-content: center;
  }

  .section--results .results-list {
    gap: 1rem;
  }

  .site-footer {
    padding: 2.5rem max(1rem, env(safe-area-inset-left)) 2rem max(1rem, env(safe-area-inset-right));
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .site-footer__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    margin-top: 1.75rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }

  .hero__actions .button {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .hero__feature-row {
    flex-direction: column;
    gap: 1rem;
  }

  .hero__feature {
    max-width: none;
  }

  .hero__split-inner {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }

  .lp-lite-theme .section--hero.section--hero-split {
    padding-top: max(0.75rem, env(safe-area-inset-top));
    padding-bottom: 2.5rem;
  }

  .pricing-card {
    padding: 1.85rem 1.25rem;
    border-radius: 24px;
  }

  .contact-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .testimonial-card {
    padding: 1.5rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  .button {
    min-height: 44px;
  }

  .site-brand__logo {
    height: 3rem;
    max-height: 3.25rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .lp-lite-theme .section--hero-split .hero h1 {
    font-size: clamp(1.55rem, 7.5vw, 2.15rem);
    line-height: 1.02;
  }

  .hero__lead {
    font-size: 0.98rem;
  }

  .section__intro h2,
  .section__intro h1 {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }

  .cta-mid h2,
  .cta-banner h2 {
    font-size: clamp(1.65rem, 6.5vw, 2.4rem);
  }
}

/* Narrow phones: hero stats stack; reduce card overlap */
@media (max-width: 420px) {
  .hero-results__stats {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .hero-results__stat {
    align-items: center;
  }

  .hero-visual__stack {
    margin: -2rem auto 0;
  }
}

/* Front-page wrapper — full-width hero (solid band edge-to-edge; content stays constrained) */
.lp-lite-theme .section--hero {
  min-height: clamp(28rem, 72vh, 52rem);
  padding-top: clamp(3rem, 8vw, 5.5rem);
  padding-bottom: clamp(4rem, 10vw, 6rem);
  padding-left: 0;
  padding-right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, #ffffff 0%, var(--color-bg) 100%);
}

.lp-lite-theme .section--hero::before {
  display: none;
}

.lp-lite-theme .hero__content {
  position: relative;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.lp-lite-theme .hero h1 {
  font-size: clamp(3rem, 5vw, 4.8rem);
}

/* Front-page hero — mockup layout (split column + picks / results cards) */
.lp-lite-theme .section--hero.section--hero-split {
  min-height: calc(100vh - 4.5rem);
  display: flex;
  align-items: center;
  padding-top: clamp(1.5rem, 3vw, 3rem);
  padding-bottom: clamp(2rem, 5vw, 4rem);
  background: transparent;
  overflow: visible;
}

.lp-lite-theme .section--hero.section--hero-split::before {
  display: none;
}

.hero__split-inner {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
}

.hero__col--copy {
  max-width: 45rem;
}

/* Hero eyebrow: gold rule + burgundy caps copy (mockup) */
.section--hero-split .eyebrow--offer {
  color: var(--color-brand-burgundy);
  font-weight: 600;
}

.section--hero-split .eyebrow--offer::before {
  background: linear-gradient(90deg, #e8a317 0%, var(--color-brand-gold) 100%);
  height: 2px;
  width: 1.5rem;
}

.lp-lite-theme .section--hero-split .hero h1 {
  font-family: var(--font-hero);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2.5rem, 4.1vw, 3.85rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: #0d0d0d;
}

.hero__lead {
  color: #5c5c5c;
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 34rem;
}

.hero__feature-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
}

.hero__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  max-width: 12rem;
  font-family: var(--font-sub);
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--color-text-muted);
}

.hero__feature-icon svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: var(--color-brand-gold);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.hero__feature-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  width: 100%;
  padding: clamp(0.5rem, 2vw, 1.25rem) 0;
}

/* Photo is the dominant element on the right; cards float over its LEFT edge (upright). */
.hero-visual__frame {
  position: relative;
  width: 100%;
  max-width: 620px;
  margin-left: auto;
  margin-right: 0;
  min-height: 540px;
}

.hero-visual__photo {
  display: block;
  width: 62%;
  height: auto;
  margin-left: auto;
  margin-right: 0;
  border-radius: 22px;
  box-shadow:
    0 32px 70px rgba(26, 26, 26, 0.22),
    0 8px 20px rgba(122, 26, 26, 0.12);
  object-fit: cover;
  aspect-ratio: 1040 / 1100;
  transform: rotate(2.5deg);
  transform-origin: 60% 50%;
}

.hero-visual__photo--placeholder {
  min-height: 540px;
  background:
    linear-gradient(160deg, rgba(245, 181, 32, 0.12) 0%, transparent 45%),
    linear-gradient(145deg, #ebe4d9 0%, #d9cfc2 50%, #cbbfaa 100%);
  border: 1px solid rgba(245, 181, 32, 0.4);
}

/* Stack of floating cards anchored to the left edge of the visual frame */
.hero-visual__stack {
  position: absolute;
  top: 6%;
  left: 0;
  width: min(58%, 340px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  z-index: 5;
}

.hero-card {
  position: relative;
  border-radius: 16px;
  box-shadow:
    0 24px 48px rgba(26, 26, 26, 0.18),
    0 6px 16px rgba(26, 26, 26, 0.08);
}

/* Compact teaser; sits above the dark results card with a small gap */
.hero-card--picks {
  z-index: 3;
  width: 78%;
  max-width: 240px;
  background: #ffffff;
  padding: 0.9rem 1rem 0.95rem;
  border: 1px solid rgba(236, 236, 236, 0.9);
  border-radius: 16px;
  margin-bottom: 0.85rem;
}

.hero-card__lead {
  margin: 0 0 0.6rem;
  font-family: var(--font-sub);
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--color-text-muted);
}

.hero-card--results {
  z-index: 2;
  width: 108%;
  background: #1e1e1e;
  color: #f2f2f2;
  padding: 1.25rem 1.1rem 0;
  border: 1px solid rgba(245, 181, 32, 0.25);
  border-radius: 16px;
  margin-top: 0;
  align-self: flex-start;
  overflow: hidden;
}

.hero-card__head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.hero-card__head--on-dark .hero-card__title {
  color: #ffffff;
}

.hero-card__rule {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--color-brand-gold);
  flex-shrink: 0;
}

.hero-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text);
}

.hero-picks-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-sub);
  font-size: 0.72rem;
}

.hero-picks-table thead th {
  text-align: left;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-brand-gold);
  padding: 0.15rem 0.35rem 0.35rem 0;
  border-bottom: 1px solid rgba(236, 236, 236, 0.95);
}

.hero-picks-table tbody td {
  padding: 0.45rem 0.35rem 0.45rem 0;
  border-bottom: 1px solid rgba(236, 236, 236, 0.85);
  color: var(--color-text-muted);
}

.hero-picks-table tbody tr:last-child td {
  border-bottom: none;
}

.hero-picks-time {
  color: var(--color-brand-gold);
  font-weight: 600;
}

.hero-odds {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: var(--color-brand-burgundy);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.65rem;
  margin-bottom: 0.15rem;
  font-family: var(--font-sub);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-brand-burgundy);
}

.hero-card__link:hover {
  color: #6f1715;
}

.hero-results__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.hero-results__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.1rem;
}

.hero-results__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(245, 181, 32, 0.14);
  margin-bottom: 0.4rem;
}

.hero-results__icon svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: var(--color-brand-gold);
}

.hero-results__value {
  font-family: var(--font-sub);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.hero-results__label {
  font-family: var(--font-sub);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.54rem;
  font-weight: 600;
  color: rgba(242, 242, 242, 0.95);
  margin-top: 0.25rem;
}

.hero-results__hint {
  font-family: var(--font-sub);
  font-size: 0.5rem;
  letter-spacing: 0.04em;
  color: rgba(242, 242, 242, 0.6);
  margin-top: 0.15rem;
}

.hero-results__banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 0.85rem -1.1rem -1px;
  padding: 0.65rem 0.75rem;
  border-radius: 0 0 16px 16px;
  background: linear-gradient(180deg, #f0d78c 0%, #e8c96a 100%);
  color: #3a2a0a;
  font-family: var(--font-sub);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.hero-results__banner-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
}

@media (max-width: 1100px) {
  .lp-lite-theme .section--hero.section--hero-split {
    min-height: auto;
  }

  .hero__split-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-visual__frame {
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    min-height: 480px;
  }

  .hero-visual__photo {
    width: 76%;
  }

  .hero-visual__stack {
    width: min(60%, 320px);
  }
}

@media (max-width: 720px) {
  .hero-results__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.4rem;
  }

  .hero-visual__frame {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    max-width: none;
    min-height: 0;
    gap: 1rem;
  }

  .hero-visual__photo,
  .hero-visual__photo--placeholder {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    transform: none;
    order: 1;
  }

  .hero-visual__stack {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 360px;
    margin: -3rem auto 0;
    order: 2;
  }

  .hero-card--picks {
    margin-bottom: 0.85rem;
  }

  .hero-card--results {
    width: 100%;
  }
}
