/* ====================================================
   IGNITE: THE TEACHING BOARD
   Brand-aligned styles. JCU Blue + Gold. Bold typography.
   ==================================================== */

:root {
  --jcu-blue: #0A4068;
  --jcu-blue-dark: #06304F;
  --jcu-blue-tint: #E5EAF0;
  --jcu-gold: #E9B820;
  --jcu-gold-dark: #C99A0F;
  --jcu-gold-tint: #FAEDC4;
  --jcu-cream: #FBF6E9;
  --ink: #1A1A1A;
  --ink-soft: #4A4A4A;
  --bg: #FFFFFF;
  --line: #E2E2E2;

  --font-h: "Barlow Condensed", "Helvetica Neue", Arial, sans-serif;
  --font-b: "Barlow", "Helvetica Neue", Arial, sans-serif;

  --container: 1200px;
  --container-narrow: 880px;
  --radius: 4px;
  --radius-lg: 12px;

  --shadow-sm: 0 2px 6px rgba(10, 64, 104, 0.08);
  --shadow-md: 0 8px 24px rgba(10, 64, 104, 0.12);
  --shadow-lg: 0 20px 48px rgba(10, 64, 104, 0.18);
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-b);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--jcu-blue); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { padding-left: 0; }

/* ============ LAYOUT ============ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
.container--narrow { max-width: var(--container-narrow); }

.section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.section--white { background: var(--bg); }
.section--blue { background: var(--jcu-blue); color: #fff; }
.section--gold { background: var(--jcu-gold); color: var(--jcu-blue); }
.section--cream { background: var(--jcu-cream); }

/* Subtle decorative shapes for blue and gold sections */
.section--blue::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(233, 184, 32, 0.08);
  z-index: 0;
}
.section--blue::after {
  content: "";
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  z-index: 0;
}
.section--gold::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(10, 64, 104, 0.06);
  z-index: 0;
}

/* ============ TYPOGRAPHY ============ */
.section__eyebrow {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--jcu-blue);
  margin-bottom: 20px;
}
.section__eyebrow--gold { color: var(--jcu-gold); }
.section__eyebrow--blue { color: var(--jcu-blue); }

.section__h2 {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  color: var(--jcu-blue);
  margin: 0 0 48px;
  letter-spacing: -0.01em;
}
.section__h2--white { color: #fff; }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__logo { display: flex; align-items: center; }
.nav__logo-img { height: 36px; width: auto; }
.nav__links {
  list-style: none;
  margin: 0;
  display: flex;
  gap: 32px;
}
.nav__links a {
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--jcu-blue);
}
.nav__links a:hover { color: var(--jcu-gold-dark); text-decoration: none; }
.nav__cta {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--jcu-gold);
  color: var(--jcu-blue);
  padding: 12px 22px;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.2s;
}
.nav__cta:hover {
  background: var(--jcu-gold-dark);
  text-decoration: none;
  transform: translateY(-1px);
}

@media (max-width: 880px) {
  .nav__links { display: none; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  background: var(--jcu-blue);
  color: #fff;
  padding: 180px 0 140px;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg-shape {
  position: absolute;
  top: -200px;
  right: -300px;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle at center, rgba(233, 184, 32, 0.18) 0%, transparent 70%);
  z-index: 0;
}
.hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
.hero__eyebrow {
  display: inline-block;
  background: var(--jcu-gold);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 36px;
}
.hero__eyebrow-text {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--jcu-blue);
}
.hero__headline {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: clamp(48px, 8vw, 108px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0 0 36px;
  color: #fff;
  max-width: 1000px;
}
.hero__headline--accent {
  color: var(--jcu-gold);
  position: relative;
  display: inline-block;
}
.hero__sub {
  font-family: var(--font-b);
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.4;
  color: #fff;
  opacity: 0.92;
  margin: 0 0 48px;
  max-width: 720px;
}
.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.85;
}
.hero__meta-divider { color: var(--jcu-gold); font-weight: 700; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn--lg {
  font-size: 18px;
  padding: 18px 36px;
}
.btn--xl {
  font-size: 22px;
  padding: 24px 48px;
}
.btn--primary {
  background: var(--jcu-gold);
  color: var(--jcu-blue);
  box-shadow: var(--shadow-md);
}
.btn--primary:hover {
  background: var(--jcu-gold-dark);
  box-shadow: var(--shadow-lg);
}
.btn--gold {
  background: var(--jcu-gold);
  color: var(--jcu-blue);
  box-shadow: 0 8px 32px rgba(233, 184, 32, 0.4);
}
.btn--gold:hover {
  background: #fff;
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.3);
}

/* ============ PROBLEM ============ */
.problem__body p {
  font-size: clamp(19px, 2vw, 22px);
  line-height: 1.55;
  margin: 0 0 24px;
  color: var(--ink);
}
.problem__punch {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 36px) !important;
  line-height: 1.2 !important;
  color: var(--jcu-blue) !important;
  margin-top: 40px !important;
  padding-top: 32px;
  border-top: 4px solid var(--jcu-gold);
}

.problem__quote {
  margin: 56px 0 0;
  padding: 40px 32px 36px 48px;
  background: var(--jcu-blue-tint);
  border-left: 8px solid var(--jcu-gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  position: relative;
}
.problem__quote::before {
  content: "\201C";
  position: absolute;
  top: -20px;
  left: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 120px;
  line-height: 1;
  color: var(--jcu-gold);
  font-weight: 700;
}
.problem__quote-text {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 34px) !important;
  line-height: 1.25 !important;
  color: var(--jcu-blue) !important;
  margin: 0 0 24px !important;
  font-style: normal;
}
.problem__quote-cite {
  display: block;
  font-style: normal;
  border-top: 2px solid rgba(10, 64, 104, 0.18);
  padding-top: 18px;
  margin-top: 8px;
}
.problem__quote-name {
  display: block;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--jcu-blue);
  margin-bottom: 4px;
}
.problem__quote-title {
  display: block;
  font-family: var(--font-b);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.4;
  color: var(--ink-soft);
}

/* ============ WHAT YOU BUILD ============ */
.what__sub {
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.5;
  color: #fff;
  opacity: 0.92;
  max-width: 820px;
  margin: 0 0 72px;
}
.what__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 880px) {
  .what__grid { grid-template-columns: 1fr; }
}
.what__card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: transform 0.25s ease, background 0.25s ease;
}
.what__card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--jcu-gold);
}
.what__card-num {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 96px;
  line-height: 1;
  color: var(--jcu-gold);
  margin-bottom: 24px;
}
.what__card-h {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 28px;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 16px;
}
.what__card p {
  color: #fff;
  opacity: 0.86;
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
}

/* ============ DAYS ============ */
.days__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1000px) {
  .days__grid { grid-template-columns: 1fr; }
}
.day-card {
  background: var(--bg);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 32px 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.day-card:hover {
  border-color: var(--jcu-blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.day-card--featured {
  border-color: var(--jcu-gold);
  background: linear-gradient(180deg, #FFFEFA 0%, #fff 60%);
  position: relative;
}
.day-card--featured::before {
  content: "";
  position: absolute;
  top: -2px; left: -2px; right: -2px;
  height: 6px;
  background: var(--jcu-gold);
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
}
.day-card__num {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--jcu-gold-dark);
  margin-bottom: 14px;
}
.day-card__h {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 36px;
  line-height: 1.1;
  color: var(--jcu-blue);
  margin: 0 0 24px;
}
.day-card__list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  flex-grow: 1;
}
.day-card__list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
}
.day-card__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--jcu-gold-dark);
  font-weight: 700;
}
.day-card__outcome {
  background: var(--jcu-blue-tint);
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 15px;
  line-height: 1.5;
  color: var(--jcu-blue-dark);
}
.day-card__outcome strong {
  color: var(--jcu-blue);
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-h);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 13px;
}

/* ============ WALKOUT ============ */
.walkout .section__h2 {
  color: var(--jcu-blue);
}
.walkout__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 56px;
}
.walkout__item {
  display: flex;
  align-items: flex-start;
  gap: 36px;
  padding-bottom: 32px;
  border-bottom: 2px solid rgba(10, 64, 104, 0.15);
}
.walkout__item:last-child { border-bottom: none; }
.walkout__num {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 84px;
  line-height: 0.9;
  color: var(--jcu-blue);
  flex-shrink: 0;
  width: 110px;
}
.walkout__body h3 {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 32px;
  line-height: 1.1;
  margin: 0 0 8px;
  color: var(--jcu-blue);
}
.walkout__body p {
  font-size: 19px;
  line-height: 1.55;
  margin: 0;
  color: var(--jcu-blue-dark);
}
@media (max-width: 700px) {
  .walkout__item { flex-direction: column; gap: 8px; }
  .walkout__num { width: auto; font-size: 64px; }
}

/* ============ TOOLS ============ */
.tools__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 40px;
}
.tools__chip {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--jcu-blue-tint);
  color: var(--jcu-blue);
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid var(--jcu-blue);
}
.tools__body {
  font-size: clamp(18px, 1.8vw, 21px);
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
}

/* ============ WHO ============ */
.who__list {
  list-style: none;
  margin: 32px 0 48px;
  padding: 0;
}
.who__list li {
  font-family: var(--font-h);
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.4;
  color: #fff;
  margin-bottom: 18px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.who__bullet {
  color: var(--jcu-gold);
  font-weight: 800;
  flex-shrink: 0;
}
.who__permission {
  background: rgba(233, 184, 32, 0.14);
  border-left: 4px solid var(--jcu-gold);
  padding: 20px 28px;
  font-family: var(--font-b);
  font-weight: 500;
  font-size: 19px;
  font-style: italic;
  color: #fff;
  margin: 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ============ DETAILS ============ */
.details__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.details__item {
  background: var(--jcu-blue-tint);
  border-left: 5px solid var(--jcu-gold);
  padding: 28px 28px;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.details__item--wide { grid-column: span 3; }
.details__label {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--jcu-blue);
  margin-bottom: 8px;
  opacity: 0.7;
}
.details__value {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  color: var(--jcu-blue);
}
.details__item--wide .details__value {
  font-family: var(--font-b);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.55;
}
@media (max-width: 880px) {
  .details__grid { grid-template-columns: 1fr; }
  .details__item--wide { grid-column: auto; }
}

/* ============ ABOUT ============ */
.about__inner {
  display: flex;
  align-items: flex-start;
  gap: 48px;
}
.about__icon {
  flex-shrink: 0;
  width: 120px;
  background: var(--bg);
  border-radius: 50%;
  padding: 24px;
  box-shadow: var(--shadow-md);
}
.about__title {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--jcu-gold-dark);
  text-transform: uppercase;
  margin: -32px 0 24px;
}
.about__body p {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 20px;
}
.about__body em {
  color: var(--jcu-blue);
  font-style: normal;
  font-weight: 700;
}
.about__punch {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 26px !important;
  line-height: 1.3 !important;
  color: var(--jcu-blue) !important;
  border-top: 3px solid var(--jcu-gold);
  padding-top: 24px;
  margin-top: 32px !important;
}
@media (max-width: 700px) {
  .about__inner { flex-direction: column; gap: 24px; }
  .about__icon { width: 90px; }
  .about__title { margin-top: -24px; }
}

/* ============ FAQ ============ */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq__item {
  border-bottom: 2px solid var(--line);
  padding: 28px 0;
  transition: border-color 0.2s ease;
}
.faq__item[open] {
  border-bottom-color: var(--jcu-gold);
}
.faq__item summary {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.3;
  color: var(--jcu-blue);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 32px;
  line-height: 1;
  color: var(--jcu-gold-dark);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq__item[open] summary::after {
  content: "−";
  transform: rotate(0deg);
}
.faq__item p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  margin: 16px 0 0;
  padding-right: 56px;
}

/* ============ FINAL CTA ============ */
.cta-final {
  text-align: center;
}
.cta-final .container {
  z-index: 2;
}
.cta-final__icon {
  width: 80px;
  margin: 0 auto 32px;
}
.cta-final__h {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 32px;
}
.cta-final__sub {
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.5;
  color: #fff;
  opacity: 0.92;
  max-width: 720px;
  margin: 0 auto 48px;
}
.cta-final__fineprint {
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.7;
  margin: 24px 0 56px;
}
.cta-final__reframe {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.35;
  color: var(--jcu-gold);
  max-width: 800px;
  margin: 0 auto;
  padding: 32px 0 0;
  border-top: 2px solid rgba(255, 255, 255, 0.18);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--jcu-blue-dark);
  color: #fff;
  padding: 48px 0;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.footer__logo { height: 40px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }
.footer__tag {
  font-size: 14px;
  margin: 12px 0 0;
  opacity: 0.7;
}
.footer__right { text-align: right; }
.footer__contact {
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 16px;
  margin: 0 0 6px;
}
.footer__contact a { color: var(--jcu-gold); }
.footer__copy {
  font-size: 13px;
  opacity: 0.6;
  margin: 0;
}
@media (max-width: 700px) {
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__right { text-align: left; }
}

/* ============ RESPONSIVE TWEAKS ============ */
@media (max-width: 700px) {
  .section { padding: 80px 0; }
  .container { padding: 0 24px; }
  .hero { padding: 140px 0 100px; }
  .nav__inner { padding: 12px 24px; }
  .hero__cta-row { flex-direction: column; align-items: flex-start; gap: 20px; }
}
