/* ── landing.css ──────────────────────────────────────────────────────────────
   Landing / marketing page styles.
   ────────────────────────────────────────────────────────────────────────── */

/* ── Hero ────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(145deg, #142038 0%, #2B4C7E 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/G%3E%3C/svg%3E");
}

.hero__eyebrow {
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-summit-gold);
  margin-bottom: 1.25rem;
  position: relative;
}

.hero__heading {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 6vw, 4rem);
  color: var(--c-white);
  line-height: 1.1;
  max-width: 800px;
  margin: 0 auto 1.5rem;
  position: relative;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.75);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  position: relative;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ── Section common ──────────────────────────────────────────────── */
.section { padding: 5rem 1.5rem; }
.section--snow  { background: var(--c-snow); }
.section--white { background: var(--c-white); }

.section__eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-primary);
  text-align: center;
  margin-bottom: .75rem;
}

.section__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--c-text);
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section__heading--mb { margin-bottom: 2rem; }

.section__sub {
  color: var(--c-text-muted);
  text-align: center;
  max-width: 540px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* ── Pain cards ──────────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.pain-card {
  background: var(--c-white);
  border: 1px solid var(--c-grey-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.pain-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.pain-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
}

.pain-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--c-text);
  margin-bottom: .5rem;
}

.pain-card__body {
  font-size: .9rem;
  color: var(--c-text-muted);
  line-height: 1.65;
}

/* ── Steps ───────────────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  counter-reset: steps;
}

.step {
  text-align: center;
  counter-increment: steps;
}

.step__number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--c-primary);
  color: var(--c-white);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.step__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--c-text);
  margin-bottom: .5rem;
}

.step__body {
  font-size: .9rem;
  color: var(--c-text-muted);
  line-height: 1.65;
}

/* ── Persona split ───────────────────────────────────────────────── */
.persona-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 840px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .persona-split { grid-template-columns: 1fr; }
}

.persona-card {
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.persona-card--organiser {
  background: linear-gradient(145deg, #142038 0%, #2B4C7E 100%);
  color: var(--c-white);
}

.persona-card--participant {
  background: linear-gradient(145deg, #1A6B4A 0%, #22845C 100%);
  color: var(--c-white);
}

.persona-card__label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .7;
}

.persona-card__heading {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1.2;
}

.persona-card__body {
  font-size: .9rem;
  opacity: .82;
  line-height: 1.65;
  flex: 1;
}

.btn--white-outline {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255,255,255,.6);
}
.btn--white-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--c-white);
}

/* ── CTA banner ──────────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #2B4C7E 0%, #142038 100%);
  padding: 5rem 1.5rem;
  text-align: center;
}

.cta-banner__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--c-white);
  margin-bottom: 1rem;
}

.cta-banner__sub {
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  margin-bottom: 2rem;
}
