/*
Theme Name: CitrusBurn Bridge Theme
Theme URI: https://example.com/
Author: Perplexity
Description: Ready-to-activate WordPress affiliate bridge landing page theme for CitrusBurn-style presell traffic.
Version: 1.0.0
Text Domain: citrusburn-bridge
*/

:root {
  --cb-blue: #0b75c9;
  --cb-blue-dark: #07569b;
  --cb-orange: #ff6a2a;
  --cb-orange-dark: #e55517;
  --cb-gold: #ffd54a;
  --cb-text: #17324d;
  --cb-text-soft: #4f6880;
  --cb-bg: #f3f8fc;
  --cb-white: #ffffff;
  --cb-border: rgba(12, 72, 126, 0.12);
  --cb-shadow: 0 18px 45px rgba(7, 60, 108, 0.18);
  --cb-radius: 22px;
  --cb-radius-sm: 14px;
  --cb-max: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--cb-text);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.4), transparent 30%),
    linear-gradient(180deg, #0e80d4 0%, #0a73c2 32%, #f6f9fc 32%, #f6f9fc 100%);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.screen-reader-text { position: absolute; left: -9999px; }
.skip-link { position: absolute; left: -9999px; top: 0; }
.skip-link:focus { left: 20px; top: 20px; background: #fff; padding: 10px 14px; z-index: 999; }

.site-header {
  padding: 18px 20px 0;
}
.header-inner,
.section-inner,
.site-footer-inner {
  width: min(calc(100% - 32px), var(--cb-max));
  margin: 0 auto;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff6bf, #ff9d2b 58%, #ff6726 100%);
  box-shadow: inset 0 2px 6px rgba(255,255,255,.4), 0 8px 18px rgba(0,0,0,.14);
  position: relative;
}
.brand-mark::after {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.9);
}
.brand-text strong {
  display: block;
  font-size: 1rem;
  letter-spacing: .06em;
}
.brand-text span {
  display: block;
  font-size: .74rem;
  opacity: .9;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.header-badge {
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.hero {
  padding: 18px 0 54px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: center;
}
.hero-copy {
  color: #fff;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.18);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 18px 0 14px;
  font-size: clamp(2.2rem, 4vw, 4.1rem);
  line-height: 1.05;
  font-weight: 800;
}
.hero h1 .accent { color: var(--cb-gold); }
.hero-subtitle {
  margin: 0 0 22px;
  max-width: 55ch;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,.92);
}
.hero-bullets {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 600;
}
.hero-bullets li::before {
  content: '✓';
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  color: var(--cb-gold);
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.primary-button,
.secondary-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.primary-button {
  background: linear-gradient(180deg, #ff8d3d, var(--cb-orange));
  color: #fff;
  box-shadow: 0 16px 30px rgba(255,106,42,.32);
}
.secondary-button {
  background: rgba(255,255,255,.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
}
.primary-button:hover,
.secondary-button:hover,
.offer-button:hover { transform: translateY(-2px); }
.microcopy {
  margin: 12px 0 0;
  color: rgba(255,255,255,.86);
  font-size: .92rem;
}
.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,1));
  padding: 22px;
  border-radius: 28px;
  box-shadow: var(--cb-shadow);
  border: 1px solid rgba(255,255,255,.3);
}
.video-shell {
  background: #14385f;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  position: relative;
}
.video-shell iframe { width: 100%; height: 100%; border: 0; }
.video-label {
  margin: 16px 0 10px;
  color: var(--cb-blue-dark);
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.card-title {
  margin: 0 0 10px;
  font-size: 1.45rem;
  line-height: 1.2;
}
.card-text {
  margin: 0;
  color: var(--cb-text-soft);
  line-height: 1.7;
}

.section {
  padding: 34px 0;
}
.story-wrap,
.reasons-wrap,
.offer-wrap,
.faq-wrap {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 14px 40px rgba(17,63,104,.08);
  border: 1px solid var(--cb-border);
}
.story-wrap { padding: 34px; }
.section-kicker {
  color: var(--cb-orange);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section h2 {
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.08;
  margin: 0 0 14px;
}
.section p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--cb-text-soft);
}
.story-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: center;
}
.story-panel {
  background: linear-gradient(180deg, #f9fcff, #edf6fd);
  border: 1px solid rgba(10,115,194,.08);
  border-radius: 24px;
  padding: 24px;
}
.stat-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
}
.stat-list li {
  padding: 16px 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(10,115,194,.09);
  font-weight: 700;
}
.highlight-box {
  margin-top: 22px;
  padding: 18px 20px;
  border-left: 5px solid var(--cb-orange);
  background: #fff6f0;
  border-radius: 16px;
  color: #7c421d;
  font-weight: 700;
}

.reasons-wrap { padding: 34px; }
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px;
}
.reason-card {
  padding: 24px 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fdfefe, #f4f9fd);
  border: 1px solid rgba(10,115,194,.08);
}
.reason-card strong {
  display: inline-flex;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background: linear-gradient(180deg, #ffe4cf, #ffd0a7);
  color: #b64c12;
  font-size: 1.1rem;
}
.reason-card h3 { margin: 0 0 10px; font-size: 1.15rem; }
.reason-card p { margin: 0; font-size: .97rem; }

.offer-band {
  background: linear-gradient(180deg, #ff7a38, #ff5f20);
  color: #fff;
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 20px 40px rgba(255,95,32,.22);
}
.offer-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: center;
}
.offer-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
}
.offer-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 600;
}
.offer-list li::before {
  content: '•';
  font-size: 1.6rem;
  line-height: 1;
  color: #ffe59d;
}
.offer-box {
  background: rgba(255,255,255,.96);
  color: var(--cb-text);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 35px rgba(115,40,0,.16);
}
.offer-box h3 { margin: 0 0 10px; font-size: 1.55rem; }
.offer-box p { margin: 0 0 16px; }
.button-stack {
  display: grid;
  gap: 12px;
}
.offer-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(180deg, #0c85dd, #0a6fbc);
  box-shadow: 0 16px 28px rgba(10,111,188,.22);
}
.offer-note {
  margin-top: 14px;
  font-size: .93rem;
  color: var(--cb-text-soft);
}

.social-proof {
  padding: 12px 0 8px;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.proof-card {
  background: #fff;
  border: 1px solid var(--cb-border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(15,60,104,.07);
}
.proof-card h3 { margin: 0 0 10px; }
.proof-card p { margin: 0; }

.faq-wrap { padding: 34px; }
.faq-item + .faq-item { margin-top: 14px; }
.faq-item {
  border: 1px solid rgba(10,115,194,.09);
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff, #f9fcff);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 18px 20px;
  font-weight: 700;
  color: var(--cb-text);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.faq-answer {
  padding: 0 20px 18px;
  color: var(--cb-text-soft);
  display: none;
}
.faq-item.active .faq-answer { display: block; }
.faq-item.active .faq-question span:last-child { transform: rotate(45deg); }
.faq-question span:last-child {
  font-size: 1.4rem;
  color: var(--cb-orange);
  transition: transform .2s ease;
}

.site-footer {
  padding: 34px 0 50px;
}
.site-footer-inner {
  color: #5a7085;
  font-size: .9rem;
  text-align: center;
}
.site-footer a { color: var(--cb-blue-dark); font-weight: 700; }

@media (max-width: 960px) {
  .hero-grid,
  .story-grid,
  .offer-grid,
  .proof-grid,
  .reasons-grid { grid-template-columns: 1fr; }
  .hero { padding-bottom: 38px; }
}

@media (max-width: 640px) {
  .header-inner { flex-direction: column; align-items: flex-start; }
  .hero h1 { font-size: 2.1rem; }
  .story-wrap,
  .reasons-wrap,
  .faq-wrap,
  .offer-band,
  .hero-card { padding: 22px; }
  .primary-button,
  .secondary-button,
  .offer-button { width: 100%; }
  .cta-row { flex-direction: column; align-items: stretch; }
}

.section-image{width:100%;border-radius:20px;box-shadow:0 16px 28px rgba(10,111,188,.14);margin-bottom:18px;object-fit:cover;background:#eef5fb}
.section-image.small-gap{margin-bottom:16px}
.reason-image{width:100%;height:180px;object-fit:cover;border-radius:18px;margin-bottom:14px;background:#eef5fb}
.offer-image{margin-top:20px;max-width:420px}
