/* ===================================================
   CONFLUENCE PE PREP — styles.css
   Brand colors:
     Teal:      #1B6B72
     Sandstone: #AC5F38
     Navy:      #0F2E3D
     Stone:     #F5F2EE
=================================================== */

/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --teal:      #1B6B72;
  --sandstone: #AC5F38;
  --navy:      #0F2E3D;
  --stone:     #F5F2EE;
  --stone-mid: #E8E4DF;
  --white:     #FFFFFF;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  color: var(--navy);
  background: var(--stone);
  line-height: 1.65;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}

a {
  text-decoration: none;
}

/* Wordmark/logo on dark backgrounds — renders as clean white monochrome */
.wordmark-light {
  filter: brightness(0) invert(1);
}



/* ===================================================
   HERO
=================================================== */
.hero {
  background: var(--navy);
  color: var(--stone);
  padding: 88px 0 100px;
  text-align: center;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wordmark {
  height: 78px;
  width: auto;
  margin-bottom: 52px;
}

.hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  max-width: 780px;
  margin-bottom: 24px;
  color: var(--stone);
}

.hero-sub {
  font-size: 1.1rem;
  font-weight: 500;
  max-width: 600px;
  margin-bottom: 16px;
  opacity: 0.85;
}

.hero-body {
  font-size: 0.975rem;
  max-width: 560px;
  margin-bottom: 44px;
  opacity: 0.65;
}

.btn-primary {
  display: inline-block;
  background: var(--sandstone);
  color: var(--white);
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 34px;
  border-radius: 6px;
  letter-spacing: 0.01em;
  transition: opacity 0.2s;
}

.btn-primary:hover {
  opacity: 0.88;
}

.hero-note {
  font-size: 0.78rem;
  opacity: 0.42;
  margin-top: 14px;
}


/* ===================================================
   THE PROBLEM
=================================================== */
.problem {
  background: var(--stone);
  padding: 88px 0;
  text-align: center;
}

.problem h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 28px;
}

.section-body {
  font-size: 1rem;
  max-width: 660px;
  margin: 0 auto 18px;
  color: #3d3d3d;
}

.section-body.bold {
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 52px;
}

.callouts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.callout {
  background: var(--white);
  border: 1px solid var(--stone-mid);
  border-radius: 8px;
  padding: 36px 28px;
  text-align: center;
}

.callout-icon {
  font-size: 1.4rem;
  color: var(--teal);
  margin-bottom: 14px;
}

.callout h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.callout p {
  font-size: 0.9rem;
  color: #5a5a5a;
}


/* ===================================================
   PRODUCTS
=================================================== */
.products {
  background: var(--white);
  padding: 88px 0;
}

.products h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 10px;
}

.section-sub {
  text-align: center;
  font-size: 0.975rem;
  color: #5a5a5a;
  max-width: 540px;
  margin: 0 auto 52px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Last card (bundle) spans full width */
.product-grid .product-card:last-child {
  grid-column: 1 / -1;
}

.product-card {
  border-radius: 8px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-free {
  background: #eef6f7;
  border: 1px solid #c0dde0;
}

.card-coming {
  background: var(--stone);
  border: 1px solid var(--stone-mid);
}

.card-bundle {
  background: #fdf4ef;
  border: 1px solid #e8c9b5;
}

.badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 4px;
  width: fit-content;
}

.badge-free {
  background: var(--teal);
  color: var(--white);
}

.badge-coming {
  background: var(--stone-mid);
  color: #666;
}

.badge-bundle {
  background: var(--sandstone);
  color: var(--white);
}

.product-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.card-format {
  font-size: 0.8rem;
  color: #777;
}

.card-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}

.btn-card {
  display: inline-block;
  margin-top: auto;
  padding: 8px 18px;
  background: var(--sandstone);
  color: var(--white);
  font-family: 'Quicksand', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 5px;
  width: fit-content;
  transition: opacity 0.2s;
}

.btn-card:hover {
  opacity: 0.85;
}


/* ===================================================
   CREDENTIALS
=================================================== */
.credentials {
  background: var(--teal);
  color: var(--stone);
  padding: 88px 0;
}

.credentials-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: center;
}

.credentials-text h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 24px;
}

.credentials-text p {
  font-size: 0.975rem;
  opacity: 0.88;
  margin-bottom: 16px;
  max-width: 580px;
}

.cred-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.cred-badge {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--stone);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
}

.credentials-mark {
  display: flex;
  align-items: center;
  justify-content: center;
}

.headshot {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid rgba(255, 255, 255, 0.25);
}


/* ===================================================
   SIGNUP FORM
=================================================== */
.signup {
  background: var(--stone);
  padding: 88px 0;
}

.form-container {
  max-width: 740px;
}

.signup h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.signup-form {
  margin-top: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.optional {
  font-weight: 400;
  color: #999;
}

input[type="text"],
input[type="email"],
select {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 10px 14px;
  border: 1.5px solid var(--stone-mid);
  border-radius: 6px;
  background: var(--white);
  color: var(--navy);
  outline: none;
  transition: border-color 0.2s;
}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus {
  border-color: var(--teal);
}

input::placeholder {
  color: #bbb;
  font-weight: 400;
}

.btn-submit {
  display: block;
  width: 100%;
  background: var(--sandstone);
  color: var(--white);
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 4px;
  letter-spacing: 0.01em;
  transition: opacity 0.2s;
}

.btn-submit:hover {
  opacity: 0.88;
}

.form-note {
  font-size: 0.75rem;
  color: #999;
  text-align: center;
  margin-top: 12px;
}


/* ===================================================
   FOOTER
=================================================== */
.footer {
  background: var(--navy);
  color: var(--stone);
  padding: 52px 0;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-wordmark {
  height: 36px;
  width: auto;
  opacity: 0.75;
  margin-bottom: 4px;
}

.footer-copy {
  font-size: 0.82rem;
  opacity: 0.55;
}

.footer-disclaimer {
  font-size: 0.75rem;
  opacity: 0.4;
  max-width: 480px;
  line-height: 1.55;
}

.footer-links {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 0.78rem;
}

.footer-links a {
  color: var(--stone);
  opacity: 0.55;
  transition: opacity 0.2s;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-divider {
  opacity: 0.3;
}


/* ===================================================
   RESPONSIVE — mobile
=================================================== */
@media (max-width: 720px) {
  .callouts {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-grid .product-card:last-child {
    grid-column: auto;
  }

  .credentials-inner {
    grid-template-columns: 1fr;
  }

  .credentials-mark {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .wordmark {
    height: 40px;
  }
}
