/* Jesus Choice Matrimonial — home page, below the fold.
   Split out of home.blade.php so the browser can paint the hero without
   parsing it first. Loaded asynchronously; every rule here styles a section
   the visitor has to scroll to reach. */
/* ════════════════════════════════════════════════════
   TRUST STRIP
════════════════════════════════════════════════════ */
.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-3); }
.trust-strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
@media (max-width: 860px) { .trust-strip-inner { grid-template-columns: repeat(2, 1fr); } }
.trust-item { display: flex; align-items: center; gap: 14px; padding: 22px 20px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: none; }
@media (max-width: 860px) { .trust-item:nth-child(2) { border-right: none; } .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); } }
.trust-item i { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--gold); color: var(--gold-deep); display: inline-flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.trust-item strong { display: block; font-size: 14.5px; font-weight: 700; color: var(--ink); }
.trust-item span { font-size: 12.5px; color: var(--ink-3); }
@media (max-width: 600px) {
    .trust-strip-inner { grid-template-columns: 1fr; }
    .trust-item { border-right: none !important; border-bottom: 1px solid var(--line); padding: 16px 4px; }
    .trust-item:last-child { border-bottom: none; }
}

/* ════════════════════════════════════════════════════
   VALUES
════════════════════════════════════════════════════ */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--paper-2); }
@media (max-width: 960px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .values-grid { grid-template-columns: 1fr; } }
.value { padding: 40px 32px; border-right: 1px solid var(--line); position: relative; transition: background .3s; }
.value:last-child { border-right: none; }
@media (max-width: 960px) { .value:nth-child(2) { border-right: none; } .value:nth-child(-n+2) { border-bottom: 1px solid var(--line); } }
@media (max-width: 560px) { .value { border-right: none; border-bottom: 1px solid var(--line); } .value:last-child { border-bottom: none; } }
.value:hover { background: var(--paper-3); }
.value-icon { width: 54px; height: 54px; border-radius: 50%; background: var(--navy-soft); color: var(--navy); display: inline-flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 22px; }
[data-theme="dark"] .value-icon { color: var(--navy-light); }
.value h3 { font-family: var(--font-display); font-size: 25px; font-weight: 600; color: var(--ink); margin-bottom: 10px; line-height: 1.15; }
.value p { font-size: 14.5px; color: var(--ink-2); line-height: 1.75; }
.value-num { position: absolute; top: 28px; right: 28px; font-family: var(--font-display); font-size: 15px; color: var(--gold); font-style: normal; }

/* ════════════════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════════════ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; position: relative; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; gap: 28px; } }
.steps::before { content: ''; position: absolute; left: 8%; right: 8%; top: 38px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
@media (max-width: 860px) { .steps::before { display: none; } }
.step { position: relative; padding-top: 0; }
.step-num {
    width: 76px; height: 76px; border-radius: 50%; background: var(--paper); border: 1px solid var(--gold);
    display: flex; align-items: center; justify-content: center; margin-bottom: 26px; position: relative;
    font-family: var(--font-display); font-size: 30px; font-weight: 600; color: var(--navy); font-style: normal;
}
[data-theme="dark"] .step-num { color: var(--navy-light); }
.step-num::after { content: ''; position: absolute; inset: 6px; border-radius: 50%; border: 1px dashed var(--gold-light); }
.step h3 { font-family: var(--font-display); font-size: 28px; font-weight: 600; color: var(--ink); margin-bottom: 12px; line-height: 1.15; }
.step p { font-size: 15px; color: var(--ink-2); line-height: 1.8; margin-bottom: 18px; }
.step ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.step ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--ink-2); }
.step ul li i { color: var(--gold-deep); font-size: 11px; margin-top: 5px; }

/* ════════════════════════════════════════════════════
   NUMBERS
════════════════════════════════════════════════════ */
.numbers { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
@media (max-width: 760px) { .numbers { grid-template-columns: repeat(2, 1fr); } }
.number { padding: 40px 24px; text-align: center; border-right: 1px solid var(--line); }
.number:last-child { border-right: none; }
@media (max-width: 760px) { .number:nth-child(2) { border-right: none; } .number:nth-child(-n+2) { border-bottom: 1px solid var(--line); } }
.number strong { display: block; font-family: var(--font-display); font-size: clamp(40px, 5vw, 58px); font-weight: 600; color: var(--navy); line-height: 1; }
[data-theme="dark"] .number strong { color: var(--navy-light); }
.number span { display: block; margin-top: 8px; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); font-weight: 700; }

/* ════════════════════════════════════════════════════
   FEATURED PROFILES
════════════════════════════════════════════════════ */
.profiles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 1040px) { .profiles-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 780px)  { .profiles-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 420px)  { .profiles-grid { grid-template-columns: 1fr; } }
.profile-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 14px 14px 20px; transition: transform .3s, box-shadow .3s, border-color .3s; }
.profile-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.profile-photo { position: relative; aspect-ratio: 4 / 4.6; border-radius: 180px 180px 14px 14px; overflow: hidden; background: var(--profile-img-bg); display: flex; align-items: center; justify-content: center; }
.profile-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .5s; }
.profile-card:hover .profile-photo img { transform: scale(1.04); }
.profile-photo .ph-fallback { font-size: 64px; color: var(--navy); opacity: .5; }
/* Sits along the straight lower edge — the arch's curved top would clip it. */
.profile-photo .ph-verified { position: absolute; bottom: 12px; left: 12px; background: rgba(255,255,255,0.94); color: var(--green); font-size: 11px; font-weight: 700; padding: 5px 10px; border-radius: 50px; display: inline-flex; align-items: center; gap: 5px; letter-spacing: .04em; box-shadow: 0 2px 8px rgba(15,31,61,0.14); }
.profile-body { padding: 16px 6px 0; }
.profile-body h3 { font-family: var(--font-display); font-size: 23px; font-weight: 600; color: var(--ink); line-height: 1.1; margin-bottom: 6px; }
.profile-body .pm { font-size: 13px; color: var(--ink-3); display: flex; flex-wrap: wrap; gap: 4px 12px; margin-bottom: 12px; }
.profile-body .pm span { display: inline-flex; align-items: center; gap: 6px; }
.profile-body .pm i { color: var(--gold-deep); font-size: 11px; }
.profile-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.chip { font-size: 11.5px; font-weight: 700; padding: 5px 10px; border-radius: 50px; background: var(--navy-soft); color: var(--navy-ink); }
.profile-card .btn { width: 100%; }

/* ════════════════════════════════════════════════════
   STORIES
════════════════════════════════════════════════════ */
.stories-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; }
@media (max-width: 900px) { .stories-grid { grid-template-columns: 1fr; } }
.story-feature {
    background: var(--navy-deep); color: #fff; border-radius: var(--radius-lg); padding: 48px 48px 40px; position: relative; overflow: hidden;
    display: flex; flex-direction: column; justify-content: space-between; min-height: 400px;
}
.story-feature::before { content: ''; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; border-radius: 50%; border: 1px solid rgba(230,207,143,0.25); }
.story-feature::after  { content: ''; position: absolute; right: -40px; top: -40px; width: 240px; height: 240px; border-radius: 50%; border: 1px solid rgba(230,207,143,0.18); }
.story-feature .quote-mark { font-family: var(--font-display); font-size: 96px; line-height: .6; color: var(--gold-light); margin-bottom: 24px; }
.story-feature blockquote { font-family: var(--font-display); font-size: clamp(22px, 2.4vw, 30px); font-weight: 500; line-height: 1.35; font-style: normal; color: #fff; margin-bottom: 34px; position: relative; }
.story-feature .story-by { display: flex; align-items: center; gap: 14px; }
.story-feature .story-by .avs { display: flex; }
.story-feature .story-by .avs span { width: 42px; height: 42px; border-radius: 50%; background: var(--gold); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 17px; display: inline-flex; align-items: center; justify-content: center; border: 2px solid var(--navy-deep); margin-left: -12px; }
.story-feature .story-by .avs span:first-child { margin-left: 0; background: var(--navy-light); color: var(--navy-deep); }
.story-feature .story-by strong { display: block; font-size: 15px; }
.story-feature .story-by small { font-size: 12.5px; color: rgba(255,255,255,0.65); }
.story-side { display: flex; flex-direction: column; gap: 24px; }
.story-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; flex: 1; }
.story-card p { font-family: var(--font-display); font-size: 20px; line-height: 1.4; font-style: normal; color: var(--ink); margin-bottom: 18px; }
.story-card .story-by { display: flex; align-items: center; gap: 12px; }
.story-card .story-by .avs { display: flex; }
.story-card .story-by .avs span { width: 36px; height: 36px; border-radius: 50%; background: var(--gold-soft); color: var(--gold-deep); font-family: var(--font-display); font-weight: 700; font-size: 15px; display: inline-flex; align-items: center; justify-content: center; border: 2px solid var(--paper-2); margin-left: -10px; }
.story-card .story-by .avs span:first-child { margin-left: 0; background: var(--navy-soft); color: var(--navy-ink); }
.story-card .story-by strong { display: block; font-size: 14px; color: var(--ink); }
.story-card .story-by small { font-size: 12px; color: var(--ink-3); }

.story-invite {
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center;
    background: var(--navy-deep); color: #fff; border-radius: var(--radius-lg); padding: 56px; position: relative; overflow: hidden;
}
@media (max-width: 860px) { .story-invite { grid-template-columns: 1fr; padding: 40px 28px; } }
.story-invite::before { content: ''; position: absolute; right: -120px; top: -120px; width: 420px; height: 420px; border-radius: 50%; border: 1px solid rgba(230,207,143,0.25); }
.story-invite::after  { content: ''; position: absolute; right: -60px; top: -60px; width: 300px; height: 300px; border-radius: 50%; border: 1px solid rgba(230,207,143,0.18); }
.story-invite .eyebrow { color: var(--gold-light); }
.story-invite .eyebrow::before { background: var(--gold-light); }
.story-invite h3 { font-family: var(--font-display); font-size: clamp(30px, 3.4vw, 44px); font-weight: 600; line-height: 1.1; margin-bottom: 16px; }
.story-invite h3 em { font-style: normal; font-weight: 500; color: var(--gold-light); }
.story-invite p { color: rgba(255,255,255,0.75); font-size: 16px; line-height: 1.75; max-width: 520px; margin-bottom: 26px; }
.story-invite blockquote { position: relative; font-family: var(--font-display); font-size: 24px; font-style: normal; line-height: 1.4; color: rgba(255,255,255,0.92); padding-left: 24px; border-left: 2px solid var(--gold); }
.story-invite blockquote small { display: block; margin-top: 12px; font-family: var(--font-body); font-style: normal; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-light); font-weight: 700; }

/* ════════════════════════════════════════════════════
   COMMUNITIES
════════════════════════════════════════════════════ */
.rites { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) { .rites { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .rites { grid-template-columns: 1fr; } }
.rite {
    display: flex; flex-direction: column; gap: 14px; padding: 30px 26px; text-decoration: none;
    background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius);
    transition: transform .3s, box-shadow .3s, border-color .3s;
}
.rite:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--gold); }
.rite i { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--gold); color: var(--gold-deep); display: inline-flex; align-items: center; justify-content: center; font-size: 15px; }
.rite strong { font-family: var(--font-display); font-size: 24px; font-weight: 600; color: var(--ink); line-height: 1.15; }
.rite span { font-size: 13.5px; color: var(--ink-3); }
.rite .rite-link { margin-top: auto; font-size: 13px; font-weight: 700; color: var(--navy); display: inline-flex; align-items: center; gap: 8px; }
[data-theme="dark"] .rite .rite-link { color: var(--navy-light); }
.rite:hover .rite-link i { transform: translateX(3px); }
.rite .rite-link i { width: auto; height: auto; border: none; font-size: 11px; color: inherit; transition: transform .2s; }

/* ════════════════════════════════════════════════════
   PLANS
════════════════════════════════════════════════════ */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
/* With fewer than three plans the empty columns pulled the cards off-centre. */
.plans:has(> :last-child:nth-child(1)) { grid-template-columns: minmax(0, 360px); justify-content: center; }
.plans:has(> :last-child:nth-child(2)) { grid-template-columns: repeat(2, minmax(0, 360px)); justify-content: center; }
@media (max-width: 900px) { .plans { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }
@media (max-width: 900px) { .plans:has(> :last-child:nth-child(-n+2)) { grid-template-columns: 1fr; } }
.plan { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px 32px; display: flex; flex-direction: column; position: relative; transition: transform .3s, box-shadow .3s; }
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.plan.popular { background: var(--navy-deep); color: #fff; border-color: var(--navy-deep); }
.plan-badge { position: absolute; top: -13px; left: 32px; background: var(--gold); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; padding: 6px 14px; border-radius: 50px; }
.plan-name { font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 14px; }
.plan.popular .plan-name { color: var(--gold-light); }
.plan-price { font-family: var(--font-display); font-size: 54px; font-weight: 600; line-height: 1; color: var(--ink); display: flex; align-items: baseline; gap: 6px; }
.plan.popular .plan-price { color: #fff; }
.plan-price small { font-family: var(--font-body); font-size: 14px; font-weight: 500; color: var(--ink-3); }
.plan.popular .plan-price small { color: rgba(255,255,255,0.6); }
.plan-discount { display: flex; align-items: center; gap: 10px; margin-top: 8px; font-size: 13px; }
.plan-discount s { color: var(--ink-3); }
.plan-discount b { color: var(--green); background: var(--green-soft); padding: 2px 9px; border-radius: 50px; font-size: 11.5px; }
.plan.popular .plan-discount s { color: rgba(255,255,255,0.55); }
.plan-desc { font-size: 14px; color: var(--ink-2); line-height: 1.7; margin: 16px 0 22px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.plan.popular .plan-desc { color: rgba(255,255,255,0.72); border-color: rgba(255,255,255,0.14); }
.plan ul { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; flex: 1; }
.plan ul li { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--ink-2); line-height: 1.5; }
.plan.popular ul li { color: rgba(255,255,255,0.85); }
.plan ul li i { width: 20px; height: 20px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 9px; flex-shrink: 0; margin-top: 1px; background: var(--green-soft); color: var(--green); }
.plan ul li.na { color: var(--feat-no-text); }
.plan ul li.na i { background: var(--feat-no-bg); color: var(--feat-no-color); }
.plan.popular ul li.na { color: rgba(255,255,255,0.4); }
.plan.popular ul li.na i { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.4); }
.plan .btn { width: 100%; }
.plan.popular .btn-primary { background: var(--gold); box-shadow: none; }
.plan.popular .btn-primary:hover { background: var(--gold-deep); }
.plans-note { text-align: center; margin-top: 32px; font-size: 14px; color: var(--ink-3); }
.plans-note a { color: var(--navy); font-weight: 700; text-decoration: none; }
[data-theme="dark"] .plans-note a { color: var(--navy-light); }

/* ════════════════════════════════════════════════════
   JOURNAL + APP
════════════════════════════════════════════════════ */
.journal { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
@media (max-width: 860px) { .journal { grid-template-columns: 1fr; } }
.journal a { display: block; padding: 30px 28px 30px 0; text-decoration: none; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); margin-right: 28px; transition: padding-left .25s; }
.journal a:last-child { border-right: none; margin-right: 0; }
@media (max-width: 860px) { .journal a { border-right: none; margin-right: 0; } }
.journal a:hover { padding-left: 8px; }
.journal .jc { font-size: 11.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 12px; display: block; }
.journal h3 { font-family: var(--font-display); font-size: 24px; font-weight: 600; color: var(--ink); line-height: 1.2; margin-bottom: 10px; }
.journal p { font-size: 14px; color: var(--ink-2); line-height: 1.7; margin-bottom: 14px; }
.journal small { font-size: 12.5px; color: var(--ink-3); display: inline-flex; gap: 14px; }

.app-band { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px 48px; margin-top: 72px; }
@media (max-width: 760px) { .app-band { grid-template-columns: 1fr; padding: 32px 24px; } }
.app-band h3 { font-family: var(--font-display); font-size: 30px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.app-band p { font-size: 15px; color: var(--ink-2); max-width: 520px; }
.app-band .store { display: inline-flex; align-items: center; gap: 14px; background: var(--ink); color: var(--paper); text-decoration: none; padding: 12px 22px; border-radius: 12px; transition: transform .2s; }
.app-band .store:hover { transform: translateY(-2px); }
.app-band .store i { font-size: 26px; }
.app-band .store small { display: block; font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; opacity: .7; }
.app-band .store strong { display: block; font-size: 16px; }
.app-band-stores { display: flex; flex-direction: column; gap: 12px; }
@media (max-width: 760px) { .app-band-stores { flex-direction: row; flex-wrap: wrap; } }
/* The iPhone app is not out yet, so its badge reads as the quieter of the two. */
.app-band .store-soon { background: transparent; color: var(--ink); border: 1px solid var(--line-strong); }
.app-band .store-soon:hover { background: var(--navy-soft); border-color: var(--gold); }

/* ════════════════════════════════════════════════════
   FINAL CTA
════════════════════════════════════════════════════ */
/* ── Home FAQ (AEO) ── */
.home-faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.home-faq details { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 0 22px; transition: border-color .2s; }
.home-faq details[open] { border-color: var(--gold); }
.home-faq summary { cursor: pointer; list-style: none; padding: 18px 0; font-weight: 700; font-size: 15.5px; color: var(--ink); display: flex; justify-content: space-between; gap: 16px; }
.home-faq summary::-webkit-details-marker { display: none; }
.home-faq summary::after { content: '+'; font-family: var(--font-display); font-size: 26px; line-height: 1; color: var(--gold-deep); flex-shrink: 0; }
.home-faq details[open] summary::after { content: '–'; }
.home-faq details p { font-size: 15px; color: var(--ink-2); line-height: 1.8; padding-bottom: 20px; margin: 0; }
.home-faq details p a { color: var(--navy); font-weight: 600; }
[data-theme="dark"] .home-faq details p a { color: var(--navy-light); }

.cta-final { position: relative; overflow: hidden; background: var(--navy-deep); color: #fff; padding: 120px 0; text-align: center; }
.cta-final::before { content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 1100px; height: 1100px; border-radius: 50%; background: radial-gradient(circle, rgba(16,66,151,0.55) 0%, transparent 60%); }
.cta-arches { position: absolute; inset: 0; pointer-events: none; opacity: .18; }
.cta-arches span { position: absolute; bottom: -20%; width: 240px; height: 520px; border-radius: 999px 999px 0 0; border: 1px solid var(--gold-light); }
.cta-arches span:nth-child(1) { left: 4%; } .cta-arches span:nth-child(2) { left: 18%; bottom: -35%; } .cta-arches span:nth-child(3) { right: 4%; } .cta-arches span:nth-child(4) { right: 18%; bottom: -35%; }
.cta-inner { position: relative; max-width: 760px; margin: 0 auto; }
.cta-final .eyebrow { color: var(--gold-light); justify-content: center; }
.cta-final .eyebrow::before, .cta-final .eyebrow::after { content: ''; width: 28px; height: 1px; background: var(--gold-light); }
.cta-final h2 { font-family: var(--font-display); font-size: clamp(38px, 5.4vw, 66px); font-weight: 600; line-height: 1.05; margin-bottom: 20px; letter-spacing: -.01em; }
.cta-final h2 em { font-style: normal; font-weight: 500; color: var(--gold-light); }
.cta-final p { font-size: 17px; line-height: 1.75; color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 40px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-final .btn-outline { color: #fff; border-color: rgba(255,255,255,0.35); }
.cta-final .btn-outline:hover { background: rgba(255,255,255,0.08); border-color: #fff; }
.cta-notes { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; margin-top: 44px; font-size: 13px; color: rgba(255,255,255,0.6); }
.cta-notes span { display: inline-flex; align-items: center; gap: 8px; }
.cta-notes i { color: var(--gold-light); font-size: 11px; }
