/* Grow Research · home page (Daybreak) */

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; background: #fff; padding: 64px 0 0; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .5; pointer-events: none; }
.hero-blob.b1 { width: 520px; height: 520px; right: -140px; top: -180px; background: radial-gradient(circle, var(--env-soft) 0%, rgba(255,255,255,0) 70%); opacity: 1; }
.hero-blob.b2 { width: 420px; height: 420px; left: -160px; bottom: -160px; background: radial-gradient(circle, var(--vol-soft) 0%, rgba(255,255,255,0) 70%); opacity: 1; }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: 56px; align-items: center; padding-bottom: 72px; }
.hero-title { font-size: clamp(44px, 6.4vw, 80px); line-height: 1.08; letter-spacing: -.045em; font-weight: 800; margin: 14px 0 22px; }
.hero-title .hl { --hl: #DCEBA4; /* Events green, lightened */
  background: linear-gradient(transparent 56%, var(--hl) 56%, var(--hl) 84%, transparent 84%); padding: 0 .06em; -webkit-box-decoration-break: clone; box-decoration-break: clone; }
.hero-sub { font-size: clamp(18px, 2vw, 21px); line-height: 1.55; color: var(--ink-2); max-width: 36rem; margin: 0 0 28px; font-weight: 500; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-facts { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 22px; padding: 0; margin: 24px 0 0; font-size: 14.5px; color: var(--ink-2); font-weight: 600; }
.hero-facts li { position: relative; padding-left: 15px; }
.hero-facts li::before { content: ""; position: absolute; left: 0; top: .55em; width: 7px; height: 7px; border-radius: 50%; background: var(--evt); }

.hero-card {
  --a: var(--disc); --a-soft: var(--disc-soft);
  position: relative; background: var(--a); color: var(--ink); border-radius: 32px; padding: 30px 30px 26px;
  box-shadow: 0 30px 60px -20px rgba(31,35,40,.28); min-height: 440px; display: flex; flex-direction: column;
  transition: background .5s ease; overflow: hidden;
}
.hero-card::after { content: ""; position: absolute; right: -90px; bottom: -90px; width: 240px; height: 240px; border-radius: 50%; background: rgba(255,255,255,.16); }
.hero-card.dark { color: #fff; }
.hero-card.dark .preview-tag { background: #fff; }
.hc-top { display: flex; justify-content: space-between; align-items: center; gap: 10px; position: relative; z-index: 1; }
.hc-area { font-size: 13px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; background: rgba(255,255,255,.55); padding: 6px 12px; border-radius: 999px; color: var(--ink); }
.hc-num { font-size: clamp(88px, 11vw, 128px); line-height: .9; letter-spacing: -.06em; font-weight: 800; margin: 34px 0 12px; font-variant-numeric: tabular-nums; position: relative; z-index: 1; }
.hc-txt { font-size: 20px; line-height: 1.35; font-weight: 700; margin: 0 0 22px; max-width: 22rem; letter-spacing: -.01em; min-height: 3.1em; position: relative; z-index: 1; }
.hc-waffle { grid-template-columns: repeat(20, 1fr); max-width: none; gap: 5px; margin-top: auto; }
.hc-waffle i { background: rgba(255,255,255,.62); }
.hc-waffle i.on { background: var(--ink); }
.hero-card.dark .hc-waffle i { background: rgba(255,255,255,.18); }
.hero-card.dark .hc-waffle i.on { background: #fff; }
.hc-nav { display: flex; gap: 8px; margin-top: 22px; flex-wrap: wrap; position: relative; z-index: 1; }
.hc-nav button { width: 30px; height: 30px; border-radius: 50%; border: 3px solid rgba(255,255,255,.9); cursor: pointer; padding: 0; box-shadow: 0 1px 3px rgba(0,0,0,.18); transition: transform .15s; }
.hc-nav button[aria-selected="true"] { transform: scale(1.18); border-color: var(--ink); }
.hero-card.dark .hc-nav button[aria-selected="true"] { border-color: #fff; }
.hero-stripe { height: 10px; background: var(--stripe); }
.hero-grid { row-gap: 0; }
.hero-note { grid-column: 2; margin: 16px 0 0; text-align: center; font-size: 15px; font-weight: 700; }
.hero-note a { color: var(--ink-2); text-decoration: underline; text-decoration-color: var(--disc); text-decoration-thickness: 2px; text-underline-offset: 4px; }
.hero-note a:hover { color: var(--ink); }
@media (max-width: 600px) {
  .hero-ctas .btn { width: 100%; }
}
@media (max-width: 960px) {
  .hero { padding-top: 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 48px; }
  .hero-card { min-height: 0; }
  .hero-note { grid-column: 1; margin-top: -20px; }
  .hc-num { margin-top: 22px; }
}

/* ---------- counts ---------- */
.counts { background: #fff; border-bottom: 1px solid var(--line); }
.counts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.counts-grid > div { padding: 26px 24px; border-left: 1px solid var(--line); display: flex; flex-direction: column; gap: 4px; }
.counts-grid > div:first-child { border-left: 0; padding-left: 0; }
.counts-grid b { font-size: 34px; font-weight: 800; letter-spacing: -.04em; line-height: 1; }
.counts-grid > div > span { font-size: 14px; color: var(--ink-2); font-weight: 600; }
@media (max-width: 800px) {
  .counts-grid { grid-template-columns: 1fr 1fr; }
  .counts-grid > div { padding: 20px 16px; border-left: 0; border-top: 1px solid var(--line); }
  .counts-grid > div:nth-child(-n+2) { border-top: 0; }
  .counts-grid > div:nth-child(odd) { padding-left: 0; }
}

/* ---------- seven areas ---------- */
.area-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.area-tabs button {
  display: inline-flex; align-items: center; gap: 10px; border: 0; cursor: pointer; font-weight: 800; font-size: 15px;
  padding: 11px 18px 11px 12px; border-radius: 999px; background: #fff; color: var(--ink); box-shadow: var(--shadow);
  transition: transform .15s, background .2s;
}
.area-tabs button i { width: 22px; height: 22px; border-radius: 50%; background: var(--a); flex: none; }
.area-tabs button:hover { transform: translateY(-2px); }
.area-tabs button[aria-selected="true"] { background: var(--a-fill); color: var(--a-on); }
.area-tabs button[aria-selected="true"] i { background: #fff; box-shadow: inset 0 0 0 5px var(--a-fill), inset 0 0 0 7px #fff; }
.area-panel { display: grid; grid-template-columns: 340px minmax(0, 1fr); background: #fff; border-radius: 30px; box-shadow: var(--shadow-lg); overflow: hidden; }
.ap-side { background: var(--a-fill); color: var(--a-on); padding: 32px 30px; display: flex; flex-direction: column; gap: 6px; transition: background .4s; }
.ap-kicker { font-size: 13px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; opacity: .85; }
.ap-big { font-size: 96px; font-weight: 800; letter-spacing: -.06em; line-height: .95; margin: 10px 0 6px; font-variant-numeric: tabular-nums; }
.ap-bigtxt { font-size: 18px; font-weight: 700; line-height: 1.35; margin: 0 0 20px; }
.ap-size { margin-top: 8px; }
.ap-size-lbl { font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; opacity: .85; margin-bottom: 8px; }
.ap-side .seg { background: rgba(255,255,255,.35); display: grid; grid-template-columns: repeat(3, 1fr); border-radius: 16px; width: 100%; }
.ap-side .seg button { color: inherit; padding: 8px 6px; font-size: 13px; border-radius: 12px; }
.ap-side .seg button[aria-pressed="true"] { background: #fff; color: var(--ink); }
.ap-n { font-size: 13px; font-weight: 700; margin: 10px 0 0; opacity: .85; }
.ap-links { margin-top: auto; padding-top: 22px; display: flex; flex-direction: column; gap: 8px; }
.ap-links a { color: inherit; font-weight: 800; text-decoration: none; display: inline-flex; gap: 8px; align-items: center; }
.ap-links a:hover { text-decoration: underline; }
.ap-charts { padding: 30px 32px; display: grid; gap: 28px; }
.ap-chart h3 { font-size: 17px; font-weight: 800; margin: 0 0 14px; letter-spacing: -.01em; }
.ap-legend { font-size: 13px; color: var(--ink-2); font-weight: 600; margin: -8px 0 0; display: flex; gap: 8px; align-items: center; }
.ap-legend[hidden] { display: none; }
.ghost-key { display: inline-block; width: 3px; height: 16px; background: var(--ink); border-radius: 2px; opacity: .75; }
.ap-charts .bar-row .tr { height: 30px; }
@media (max-width: 900px) {
  .area-panel { grid-template-columns: 1fr; border-radius: 24px; }
  .ap-side { padding: 24px 22px; }
  .ap-big { font-size: 72px; }
  .ap-charts { padding: 24px 20px; }
  .area-tabs { flex-wrap: nowrap; overflow-x: auto; margin: 0 -24px 16px; padding: 4px 24px 12px; scrollbar-width: none; }
  .area-tabs button { flex: none; }
}

/* ---------- stories ---------- */
.stories { background: #fff; }
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.story-card { display: flex; flex-direction: column; text-decoration: none; color: var(--ink); background: var(--a-soft); border-radius: 26px; overflow: hidden; transition: transform .2s, box-shadow .2s; position: relative; }
.story-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.story-card::before { content: ""; height: 10px; background: var(--a); flex: none; }
.story-card.feature { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); grid-template-rows: 10px auto; background: var(--char-3); color: #fff; }
.story-card.feature::before { background: var(--stripe); grid-column: 1 / -1; }
.story-card.feature .sc-art { grid-row: 2; grid-column: 2; padding: 34px 34px 34px 10px; }
.story-card.feature .sc-body { grid-row: 2; grid-column: 1; padding: 30px 34px 30px; }
.sc-art { padding: 28px 28px 0; display: flex; align-items: center; }
.sc-dots { display: grid; grid-template-columns: repeat(25, 1fr); gap: 5px; width: 100%; }
.sc-dots i { aspect-ratio: 1; border-radius: 50%; background: rgba(255,255,255,.2); transition: background .4s calc(var(--k) * 3ms); }
.sc-dots i.on { background: var(--env); }
.sc-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.sc-meta { display: flex; justify-content: space-between; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; color: var(--ink-2); margin-bottom: 14px; }
.story-card .chip { background: #fff; }
.story-card.feature .sc-meta { color: rgba(255,255,255,.85); }
.story-card.feature .chip { background: rgba(255,255,255,.15); color: #fff; }
.story-card h3 { font-size: 26px; line-height: 1.08; letter-spacing: -.03em; font-weight: 800; margin: 0 0 10px; }
.story-card.feature h3 { font-size: clamp(36px, 4.6vw, 54px); }
.story-card p { margin: 0 0 18px; color: var(--ink-2); font-size: 15.5px; line-height: 1.5; }
.story-card.feature p { color: #E6E8EB; font-size: 18px; max-width: 34rem; }
.sc-stat { margin-top: auto; display: flex; gap: 12px; align-items: center; padding-top: 14px; border-top: 1.5px solid rgba(31,35,40,.1); }
.story-card.feature .sc-stat { border-top-color: rgba(255,255,255,.18); }
.sc-stat b { font-size: 30px; font-weight: 800; letter-spacing: -.04em; color: var(--a-ink); white-space: nowrap; }
.story-card.feature .sc-stat b { color: var(--env); font-size: 44px; }
.sc-stat span { font-size: 13.5px; font-weight: 600; color: var(--ink-2); line-height: 1.35; }
.story-card.feature .sc-stat span { color: #D4D8DC; }
@media (max-width: 1000px) { .story-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 760px) {
  .story-card.feature { grid-template-columns: 1fr; grid-template-rows: 10px auto auto; }
  .story-card.feature .sc-art { grid-row: 2; grid-column: 1; padding: 24px 22px 0; }
  .story-card.feature .sc-body { grid-row: 3; grid-column: 1; padding: 20px 22px 24px; }
}
@media (max-width: 640px) { .story-grid { grid-template-columns: 1fr; } .sc-dots { gap: 3px; } }

/* ---------- ministries like yours ---------- */
.like-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 40px; align-items: start; }
.like-intro h2 { font-size: clamp(30px, 4vw, 44px); line-height: 1.06; letter-spacing: -.035em; margin: 10px 0 12px; font-weight: 800; }
.like-intro > p { color: var(--ink-2); font-size: 17.5px; margin: 0 0 22px; }
.like-form { display: grid; gap: 12px; margin-bottom: 14px; }
.like-form label { display: grid; gap: 6px; }
.like-form label span { font-size: 12.5px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-2); }
.like-form .field-select { width: 100%; }
.like-n { font-size: 14.5px; font-weight: 700; color: var(--ink-2); margin: 0 0 18px; }
.like-n b { color: var(--ink); }
.like-card { padding: 26px 28px; }
.like-legend { display: flex; gap: 18px; font-size: 13px; font-weight: 700; color: var(--ink-2); margin-bottom: 16px; flex-wrap: wrap; }
.like-legend i { display: inline-block; vertical-align: -2px; margin-right: 7px; }
.k-you { width: 22px; height: 12px; border-radius: 6px; background: var(--vol); }
.k-all { width: 3px; height: 14px; background: var(--ink); border-radius: 2px; opacity: .8; }
.ly-row { display: grid; grid-template-columns: minmax(150px, 38%) 1fr 104px; gap: 14px; align-items: center; padding: 11px 0; border-top: 1px solid var(--line); }
.ly-row:first-child { border-top: 0; }
.ly-lb { font-weight: 700; font-size: 14.5px; line-height: 1.3; display: flex; gap: 9px; align-items: flex-start; }
.ly-lb i { width: 10px; height: 10px; border-radius: 3px; background: var(--a); flex: none; margin-top: 4px; }
.ly-tr { position: relative; height: 26px; background: var(--bg); border-radius: 9px; }
.ly-tr .fl { position: absolute; inset: 0 auto 0 0; background: var(--a); border-radius: 9px; transition: width .6s cubic-bezier(.2,.8,.25,1); }
.ly-tr .gh { position: absolute; top: -3px; bottom: -3px; width: 3px; background: var(--ink); border-radius: 2px; opacity: .8; transition: left .6s cubic-bezier(.2,.8,.25,1); }
.ly-v { text-align: right; font-weight: 800; font-variant-numeric: tabular-nums; font-size: 16px; }
.ly-v small { display: block; font-size: 12px; font-weight: 700; color: var(--ink-3); }
.ly-empty { padding: 28px 0; color: var(--ink-2); font-weight: 600; }
@media (max-width: 900px) { .like-grid { grid-template-columns: 1fr; gap: 24px; } }
@media (max-width: 560px) { .ly-row { grid-template-columns: 1fr 86px; } .ly-lb { grid-column: 1 / -1; } .like-card { padding: 20px; } }

/* ---------- tools ---------- */
.tool-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tool { display: flex; flex-direction: column; text-decoration: none; color: var(--ink); background: #fff; border-radius: 26px; padding: 24px; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s; }
.tool:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tool h3 { font-size: 22px; font-weight: 800; letter-spacing: -.02em; margin: 18px 0 8px; }
.tool p { margin: 0 0 16px; color: var(--ink-2); font-size: 15px; }
.tool-go { margin-top: auto; font-weight: 800; color: var(--a-ink); }
.tool-art { height: 120px; background: var(--a-soft); border-radius: 18px; padding: 18px; display: flex; flex-direction: column; justify-content: center; gap: 9px; }
.tool-art i { display: block; height: 14px; border-radius: 7px; background: var(--a); }
.tool-art.cols { flex-direction: row; align-items: flex-end; gap: 10px; }
.tool-art.cols i { flex: 1; width: auto; }
.tool-art.cols i:nth-child(even) { background: var(--disc); }
.tool-art.map { display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; align-content: center; }
.tool-art.map i { height: auto; aspect-ratio: 1; border-radius: 6px; }
.tool-art.map i:nth-child(3n) { opacity: .45; } .tool-art.map i:nth-child(4n+1) { opacity: .7; } .tool-art.map i:nth-child(5n) { opacity: .25; }
@media (max-width: 900px) { .tool-grid { grid-template-columns: 1fr; } }

/* ---------- findings (injected) ---------- */
.fx-promo { background: #fff; }
.fx-promo-title { font-size: clamp(30px, 4.2vw, 46px); line-height: 1.05; letter-spacing: -.035em; margin: 10px 0 10px; font-weight: 800; }
.fx-promo-dek { margin: 0; color: var(--ink-2); max-width: 44rem; font-size: 17px; }
.fx-promo .section-head { align-items: flex-end; }

/* ---------- handoff ---------- */
.handoff { padding: 88px 0; }
.handoff-card { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); background: var(--char-3); color: #fff; border-radius: 34px; overflow: hidden; position: relative; }
.handoff-copy { padding: 52px 48px; }
.handoff-copy h2 { font-size: clamp(34px, 5vw, 58px); line-height: 1.02; letter-spacing: -.045em; margin: 12px 0 14px; font-weight: 800; }
.handoff-copy > p { color: #D4D8DC; font-size: 18px; max-width: 34rem; margin: 0 0 22px; }
.handoff .eyebrow { color: var(--env); }
.handoff-list { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 12px; }
.handoff-list li { display: flex; gap: 12px; align-items: flex-start; color: #E6E8EB; font-weight: 600; }
.handoff-list i { width: 14px; height: 14px; border-radius: 50%; background: var(--a); flex: none; margin-top: 5px; }
.handoff-art { display: grid; grid-template-rows: repeat(7, 1fr); }
.handoff-art span { background: var(--a); transform-origin: left; display: flex; align-items: center; padding: 0 26px; }
.handoff-art b { font-size: clamp(17px, 1.7vw, 21px); font-weight: 800; letter-spacing: -.01em; color: var(--ink); }
.handoff-art [data-theme="lead"] b { color: #fff; }
.reveal .handoff-art span { transform: scaleX(0); transition: transform .8s cubic-bezier(.2,.8,.25,1); }
.revealed .handoff-art span { transform: none; }
.handoff-art span:nth-child(2) { transition-delay: .06s; } .handoff-art span:nth-child(3) { transition-delay: .12s; }
.handoff-art span:nth-child(4) { transition-delay: .18s; } .handoff-art span:nth-child(5) { transition-delay: .24s; }
.handoff-art span:nth-child(6) { transition-delay: .3s; } .handoff-art span:nth-child(7) { transition-delay: .36s; }
@media (max-width: 860px) {
  .handoff { padding: 56px 0; }
  .handoff-card { grid-template-columns: 1fr; border-radius: 26px; }
  .handoff-copy { padding: 34px 26px; }
  .handoff-art { grid-template-rows: repeat(7, 34px); }
  .handoff-art span { padding: 0 26px; }
  .handoff-art b { font-size: 14.5px; }
}

/* ---------- stories index page (stories.html) ---------- */
.page-hero { background: #fff; padding: 64px 0 8px; }
.page-hero h1 { font-size: clamp(40px, 6vw, 68px); line-height: 1.04; letter-spacing: -.045em; font-weight: 800; margin: 14px 0 16px; max-width: 16ch; }
.page-hero p { font-size: clamp(17px, 1.8vw, 20px); color: var(--ink-2); max-width: 40rem; margin: 0; font-weight: 500; }
.story-filter { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0 0; }
.story-filter button { border: 0; cursor: pointer; font-weight: 700; font-size: 14px; padding: 9px 15px; border-radius: 999px; background: #fff; box-shadow: inset 0 0 0 1.5px var(--line-2); color: var(--ink-2); display: inline-flex; gap: 8px; align-items: center; }
.story-filter button[data-theme]::before { content: ""; width: 10px; height: 10px; border-radius: 3px; background: var(--a); }
.story-filter button span { color: var(--ink-3); font-weight: 600; }
.story-filter button:hover { box-shadow: inset 0 0 0 1.5px var(--ink-3); }
.story-filter button[aria-pressed="true"] { background: var(--ink); color: #fff; box-shadow: none; }
.story-filter button[aria-pressed="true"] span { color: rgba(255,255,255,.7); }
.stories-page { padding-top: 40px; }
.story-card[hidden] { display: none; }
.story-empty { text-align: center; color: var(--ink-2); font-weight: 600; }
@media (max-width: 640px) { .page-hero { padding-top: 40px; } }
