/* ============================================================
   rMembr — Shared Stylesheet
   https://rmembr.me
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #0d183e;
  --blue-dark: #162868;
  --blue:      #1f3892;
  --gold:      #facf39;
  --gold-dark: #f9c307;
  --gold-light:#fbdb6b;
  --white:     #ffffff;
  --off-white: #f5f7fc;
  --pale-blue: #eaeefc;
  --muted:     #64748b;
  --border:    rgba(22,40,104,0.1);
  --display: 'Sora', system-ui, sans-serif;
  --body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --ease: 0.28s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }
body { font-family: var(--body); background: var(--white); color: var(--navy); line-height: 1.65; overflow-x: hidden; font-size: 16px; }

/* ============================================================
   NAV
   ============================================================ */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 0 3rem; height: 68px; background: rgba(255,255,255,0.96); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-links { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
.nav-links a { font-family: var(--body); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.03em; color: var(--blue-dark); text-decoration: none; transition: color var(--ease); }
.nav-links a:hover, .nav-links a.active { color: var(--gold-dark); }
.nav-cta { background: var(--blue-dark) !important; color: #fff !important; padding: 0.55rem 1.3rem !important; border-radius: 8px; transition: background var(--ease) !important; }
.nav-cta:hover { background: var(--navy) !important; }

/* Mobile nav */
.nav-burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 36px; height: 36px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--blue-dark); border-radius: 2px; transition: var(--ease); }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { display: none; position: fixed; top: 68px; left: 0; right: 0; background: rgba(255,255,255,0.98); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); z-index: 99; padding: 1rem 1.5rem 1.5rem; flex-direction: column; gap: 0; }
.mobile-nav.open { display: flex; }
.mobile-nav-btn { width: 100%; text-align: left; font-family: var(--body); font-size: 0.95rem; font-weight: 500; color: var(--blue-dark); background: none; border: none; border-bottom: 1px solid var(--border); padding: 0.75rem 0; cursor: pointer; display: block; text-decoration: none; -webkit-tap-highlight-color: transparent; }
.mobile-nav-btn:last-child { border-bottom: none; margin-top: 0.5rem; background: var(--blue-dark); color: #fff; text-align: center; border-radius: 8px; padding: 0.8rem; }

/* ============================================================
   UTILITIES
   ============================================================ */
.container { max-width: 1100px; margin: 0 auto; padding: 0 3rem; }
.section { padding: 6rem 0; background: var(--white); }
h1, h2, h3 { font-family: var(--display); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
.display { font-size: clamp(2.6rem, 5.5vw, 5rem); }
.display em { font-style: normal; color: var(--gold-dark); }
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 1.2rem; }
.section-title em { font-style: normal; color: var(--gold-dark); }
p.lead { font-size: 1.05rem; color: var(--muted); line-height: 1.8; max-width: 540px; }
.eyebrow { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.55rem; }
.eyebrow::before { content: ''; width: 18px; height: 2.5px; background: var(--gold); border-radius: 2px; flex-shrink: 0; }
.gold-bar { width: 40px; height: 4px; background: var(--gold); border-radius: 4px; margin: 1.25rem 0; }
.btn { display: inline-block; font-family: var(--body); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em; text-decoration: none; padding: 0.8rem 1.7rem; border-radius: 8px; transition: var(--ease); cursor: pointer; border: none; }
.btn-primary { background: var(--blue-dark); color: #fff; }
.btn-primary:hover { background: var(--navy); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-dark); }
.btn-outline { background: transparent; color: var(--blue-dark); border: 2px solid var(--blue-dark); }
.btn-outline:hover { background: var(--blue-dark); color: #fff; }
.btn-outline-w { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.45); }
.btn-outline-w:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* Page hero (inner pages) */
.ph { padding: 5rem 3rem 4rem; background: var(--white); }
.ph.dark { background: linear-gradient(120deg, var(--navy) 0%, var(--blue-dark) 100%); }
.ph.dark h1 { color: #fff; }
.ph.dark .eyebrow { color: var(--gold-light); }
.ph.dark .eyebrow::before { background: var(--gold); }
.ph.dark .lead { color: rgba(255,255,255,0.55); }
.ph-inner { max-width: 1100px; margin: 0 auto; }

/* Trust bar */
.trust { background: var(--blue-dark); padding: 3.5rem 0; }
.trust-inner { display: flex; align-items: center; justify-content: space-between; gap: 3rem; }
.trust-q { font-family: var(--display); font-size: 1.6rem; font-weight: 700; color: #fff; letter-spacing: -0.01em; }
.trust-sub { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 270px; }

/* CTA bar */
.cta-bar { background: var(--gold); padding: 5rem 3rem; text-align: center; }
.cta-bar h2 { font-family: var(--display); font-size: clamp(1.8rem,3.5vw,2.8rem); color: var(--navy); margin-bottom: 0.6rem; }
.cta-bar p { font-size: 0.95rem; color: rgba(13,24,62,0.6); margin-bottom: 2.5rem; }
.email-row { display: flex; max-width: 460px; margin: 0 auto; }
.email-input { flex: 1; padding: 0.85rem 1.15rem; font-family: var(--body); font-size: 0.9rem; border: 2px solid var(--navy); border-right: none; border-radius: 8px 0 0 8px; background: #fff; color: var(--navy); outline: none; }
.email-input::placeholder { color: rgba(13,24,62,0.38); }
.email-btn { background: var(--navy); color: #fff; font-family: var(--body); font-size: 0.8rem; font-weight: 600; border: none; padding: 0 1.4rem; border-radius: 0 8px 8px 0; cursor: pointer; transition: background var(--ease); }
.email-btn:hover { background: var(--blue); }

/* Footer */
footer { background: var(--navy); padding: 4rem 0 2rem; }
.footer-g { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; margin-bottom: 3rem; }
.footer-tag { font-size: 0.85rem; color: rgba(255,255,255,0.38); line-height: 1.7; max-width: 270px; margin-top: 1.25rem; }
.fcol-title { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.flinks { list-style: none; }
.flinks li { margin-bottom: 0.6rem; }
.flinks a { font-size: 0.85rem; color: rgba(255,255,255,0.42); text-decoration: none; transition: color var(--ease); }
.flinks a:hover { color: var(--gold); }
.footer-bot { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 2rem; display: flex; justify-content: space-between; }
.fcopy { font-size: 0.74rem; color: rgba(255,255,255,0.22); }

/* Animations */
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.fu { animation: fadeUp 0.6s ease forwards; }
.fu2 { animation-delay: 0.12s; }
.fu3 { animation-delay: 0.24s; }

/* ============================================================
   HOME — HERO
   ============================================================ */
.hero { background: linear-gradient(135deg, var(--navy) 0%, var(--blue-dark) 58%, var(--blue) 100%); min-height: calc(100vh - 68px); display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 4rem; padding: 5rem 3rem; position: relative; overflow: hidden; }
.hero::after { content: ''; position: absolute; right: -80px; top: -80px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(250,207,57,0.1) 0%, transparent 70%); pointer-events: none; }
.hero-content { position: relative; max-width: 520px; margin: 0 auto; }
.hero-chip { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); border: 1.5px solid rgba(250,207,57,0.3); padding: 0.35rem 0.9rem; border-radius: 100px; margin-bottom: 1.75rem; }
.hero-chip::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.hero h1 { color: #fff; margin-bottom: 1.25rem; }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 2.25rem; max-width: 440px; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-stats { display: flex; gap: 2.5rem; padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.1); }
.stat-num { font-family: var(--display); font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 0.2rem; }
.hero-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(250,207,57,0.18); border-radius: 16px; padding: 2.5rem; backdrop-filter: blur(14px); position: relative; max-width: 420px; margin: 0 auto; }
.hero-card-ql { font-family: var(--display); font-size: 2.5rem; color: var(--gold); line-height: 0.8; display: block; margin-bottom: 0.75rem; }
.hero-card-quote { font-size: 1.15rem; font-weight: 300; color: #fff; line-height: 1.6; margin-bottom: 1.5rem; font-style: italic; }
.hero-card-attr { font-size: 0.75rem; color: rgba(255,255,255,0.4); font-weight: 500; letter-spacing: 0.04em; }
.hero-card-dot { position: absolute; bottom: -12px; right: 28px; width: 24px; height: 24px; border-radius: 50%; background: var(--gold); }

/* Features strip */
.feat-strip { background: var(--off-white); padding: 5rem 0; }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.feat-item { padding: 2.75rem 2.5rem; border-right: 1px solid var(--border); transition: background var(--ease); }
.feat-item:last-child { border-right: none; }
.feat-item:hover { background: var(--pale-blue); }
.feat-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; margin-bottom: 1.25rem; }
.feat-title { font-family: var(--display); font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 0.65rem; }
.feat-text { font-size: 0.9rem; color: var(--muted); line-height: 1.75; }

/* Mission section */
.mission-split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.mission-img { background: linear-gradient(145deg, var(--blue-dark), var(--navy)); border-radius: 20px; aspect-ratio: 4/5; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.mission-img::before { content: ''; position: absolute; inset: 20px; border: 1px solid rgba(250,207,57,0.18); border-radius: 12px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.story p { font-size: 0.95rem; color: var(--muted); line-height: 1.85; margin-bottom: 1.2rem; }
.pull { font-size: 1.1rem; font-weight: 500; color: var(--blue-dark); border-left: 4px solid var(--gold); padding-left: 1.2rem; margin: 1.75rem 0; line-height: 1.55; }
.offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.offer-card { background: var(--white); padding: 2rem; transition: background var(--ease); }
.offer-card:hover { background: var(--pale-blue); }
.offer-ico { width: 38px; height: 38px; background: var(--pale-blue); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; margin-bottom: 0.85rem; }
.offer-title { font-family: var(--display); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.offer-text { font-size: 0.85rem; color: var(--muted); line-height: 1.7; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.flow-wrap { padding: 5rem 0; background: var(--white); }
.flow-steps { position: relative; max-width: 900px; margin: 0 auto; }
.flow-steps::before { content: ''; position: absolute; left: 50%; top: 60px; bottom: 60px; width: 2px; background: linear-gradient(to bottom, var(--gold), rgba(250,207,57,0.1)); transform: translateX(-50%); z-index: 0; }
.flow-step { display: grid; grid-template-columns: 1fr 80px 1fr; align-items: center; gap: 0; margin-bottom: 3rem; position: relative; z-index: 1; }
.flow-step:last-child { margin-bottom: 0; }
.flow-step .fs-content { padding: 2rem 2.25rem; background: var(--white); border: 1.5px solid var(--border); border-radius: 16px; box-shadow: 0 2px 16px rgba(22,40,104,0.06); transition: box-shadow var(--ease), border-color var(--ease); }
.flow-step .fs-content:hover { border-color: rgba(22,40,104,0.22); box-shadow: 0 6px 28px rgba(22,40,104,0.1); }
.flow-step .fs-mid { display: flex; align-items: center; justify-content: center; }
.flow-step .fs-num { width: 52px; height: 52px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-size: 1.1rem; font-weight: 700; color: var(--navy); flex-shrink: 0; box-shadow: 0 0 0 6px rgba(250,207,57,0.18); }
.flow-step.even .fs-content { grid-column: 3; }
.flow-step.even .fs-empty { grid-column: 1; grid-row: 1; }
.flow-step.even .fs-mid { grid-column: 2; grid-row: 1; }
.fs-step-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 0.3rem; }
.fs-title { font-family: var(--display); font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 0.6rem; }
.fs-text { font-size: 0.88rem; color: var(--muted); line-height: 1.75; }
.fs-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }

/* ============================================================
   PLANS
   ============================================================ */
.core-box { background: var(--pale-blue); border: 2px solid var(--border); border-radius: 16px; padding: 2.5rem 3rem; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 3rem; margin-bottom: 3.5rem; }
.core-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; background: var(--gold); color: var(--navy); padding: 0.2rem 0.65rem; border-radius: 100px; display: inline-block; margin-bottom: 0.6rem; }
.core-title { font-family: var(--display); font-size: 1.65rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.core-desc { font-size: 0.87rem; color: var(--muted); line-height: 1.7; max-width: 480px; }
.core-price { font-family: var(--display); font-size: 3.5rem; font-weight: 700; color: var(--blue-dark); line-height: 1; }
.core-price-sub { font-size: 0.75rem; color: var(--muted); margin-top: 0.2rem; }
.ptabs { display: flex; border-bottom: 2px solid var(--border); margin-bottom: 3rem; }
.ptab { padding: 0.85rem 1.75rem; font-family: var(--body); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.03em; color: var(--muted); cursor: pointer; border: none; background: none; border-bottom: 2.5px solid transparent; margin-bottom: -2px; transition: var(--ease); }
.ptab:hover { color: var(--blue-dark); }
.ptab.active { color: var(--blue-dark); border-bottom-color: var(--gold); }
.pgroup { display: none; }
.pgroup.active { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.pcard { border: 2px solid var(--border); padding: 2rem; border-radius: 16px; position: relative; transition: var(--ease); background: var(--white); }
.pcard:hover { border-color: var(--blue-dark); box-shadow: 0 8px 32px rgba(22,40,104,0.1); transform: translateY(-4px); }
.pcard.hot { background: var(--blue-dark); border-color: var(--blue-dark); }
.pcard.hot:hover { transform: translateY(-4px); box-shadow: 0 10px 40px rgba(22,40,104,0.22); }
.pbadge { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; background: var(--gold); color: var(--navy); padding: 0.22rem 0.85rem; border-radius: 0 0 8px 8px; white-space: nowrap; }
.ptier { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue); margin-bottom: 0.3rem; }
.pcard.hot .ptier { color: var(--gold-light); }
.psub { font-size: 0.78rem; color: var(--muted); margin-bottom: 1.1rem; }
.pcard.hot .psub { color: rgba(255,255,255,0.5); }
.pprice { font-family: var(--display); font-size: 2.6rem; font-weight: 700; line-height: 1; letter-spacing: -0.02em; }
.pcard.hot .pprice { color: #fff; }
.pperiod { font-size: 0.75rem; color: var(--muted); margin-bottom: 1.5rem; margin-top: 0.15rem; }
.pcard.hot .pperiod { color: rgba(255,255,255,0.55); }
.pfeats { list-style: none; margin-bottom: 1.5rem; }
.pfeats li { font-size: 0.84rem; color: var(--muted); padding: 0.42rem 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 0.55rem; }
.pfeats li:last-child { border-bottom: none; }
.pcard.hot .pfeats li { color: rgba(255,255,255,0.68); border-bottom-color: rgba(255,255,255,0.08); }
.pfeats li::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.pcard.hot .pfeats li::before { background: var(--gold-light); }
.pcta { width: 100%; text-align: center; display: block; }
.pfootnote { font-size: 0.78rem; color: var(--muted); margin-top: 2.5rem; line-height: 1.7; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; align-items: start; }
.faq-sticky { position: sticky; top: 100px; }
.faq-sticky p { font-size: 0.87rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 1.35rem 0; cursor: pointer; gap: 1rem; }
.faq-qt { font-family: var(--display); font-size: 1rem; font-weight: 600; color: var(--navy); line-height: 1.4; }
.faq-ic { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--blue-dark); flex-shrink: 0; transition: transform var(--ease), background var(--ease), border-color var(--ease); line-height: 1; }
.faq-item.open .faq-ic { transform: rotate(45deg); background: var(--gold); border-color: var(--gold); color: var(--navy); }
.faq-ans { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-ans { max-height: 500px; }
.faq-ans-in { font-size: 0.9rem; color: var(--muted); line-height: 1.8; padding-bottom: 1.5rem; }

/* ============================================================
   REGISTER
   ============================================================ */
.reg-hero { background: linear-gradient(120deg, var(--navy) 0%, var(--blue-dark) 100%); padding: 5rem 3rem; text-align: center; }
.reg-hero h1 { color: #fff; margin-bottom: 0.75rem; }
.reg-hero p { color: rgba(255,255,255,0.55); font-size: 1rem; line-height: 1.7; }
.reg-card { max-width: 500px; margin: -3rem auto 0; background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 3rem; box-shadow: 0 16px 56px rgba(22,40,104,0.1); }
.flabel { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue-dark); margin-bottom: 0.4rem; }
.finput { width: 100%; padding: 0.8rem 1rem; border: 2px solid var(--border); border-radius: 8px; font-family: var(--body); font-size: 0.9rem; color: var(--navy); outline: none; margin-bottom: 1.25rem; transition: border-color var(--ease); }
.finput:focus { border-color: var(--blue-dark); }
.finput::placeholder { color: rgba(13,24,62,0.32); }
.fnote { font-size: 0.74rem; color: var(--muted); text-align: center; margin-top: 1rem; line-height: 1.6; }

/* ============================================================
   NOTES / BLOG
   ============================================================ */
.notes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; margin-bottom: 4rem; }
.note-card { border: 1.5px solid var(--border); border-radius: 16px; overflow: hidden; transition: var(--ease); background: var(--white); text-decoration: none; display: block; }
.note-card:hover { border-color: var(--blue-dark); box-shadow: 0 8px 32px rgba(22,40,104,0.1); transform: translateY(-4px); }
.note-card-thumb { height: 180px; background: linear-gradient(135deg, var(--blue-dark), var(--navy)); display: flex; align-items: center; justify-content: center; font-size: 3.5rem; position: relative; overflow: hidden; }
.note-card-thumb::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 30%, rgba(250,207,57,0.15), transparent 60%); }
.note-card-body { padding: 1.75rem; }
.note-tag { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); background: var(--pale-blue); padding: 0.2rem 0.65rem; border-radius: 100px; display: inline-block; margin-bottom: 0.75rem; }
.note-title { font-family: var(--display); font-size: 1.05rem; font-weight: 700; color: var(--navy); line-height: 1.35; margin-bottom: 0.6rem; }
.note-excerpt { font-size: 0.85rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.1rem; }
.note-meta { font-size: 0.75rem; color: var(--muted); font-weight: 500; display: flex; align-items: center; gap: 0.5rem; }
.note-meta::before { content: ''; width: 20px; height: 1px; background: var(--gold); }
.note-coming { opacity: 0.45; pointer-events: none; }

/* Article */
.article-wrap { max-width: 720px; margin: 0 auto; }
.article-back { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; font-weight: 600; color: var(--blue-dark); margin-bottom: 2.5rem; text-decoration: none; transition: color var(--ease); }
.article-back:hover { color: var(--gold-dark); }
.article-back::before { content: '←'; }
.article-hero-img { height: 300px; border-radius: 16px; background: linear-gradient(135deg, var(--blue-dark) 0%, var(--navy) 100%); display: flex; align-items: center; justify-content: center; font-size: 5rem; margin-bottom: 2.5rem; position: relative; overflow: hidden; }
.article-hero-img::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 60% 30%, rgba(250,207,57,0.12), transparent 60%); }
.article-tag { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); background: var(--pale-blue); padding: 0.2rem 0.65rem; border-radius: 100px; display: inline-block; margin-bottom: 1rem; }
.article-title { font-family: var(--display); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; color: var(--navy); line-height: 1.15; margin-bottom: 1rem; letter-spacing: -0.02em; }
.article-byline { font-size: 0.82rem; color: var(--muted); font-weight: 500; display: flex; align-items: center; gap: 0.6rem; margin-bottom: 2.5rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.byline-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.article-body { font-size: 1rem; color: #374151; line-height: 1.85; }
.article-body p { margin-bottom: 1.4rem; }
.article-body h3 { font-family: var(--display); font-size: 1.3rem; font-weight: 700; color: var(--navy); margin: 2.5rem 0 1rem; letter-spacing: -0.01em; }
.article-body ul { margin: 0 0 1.4rem 1.4rem; }
.article-body ul li { margin-bottom: 0.6rem; line-height: 1.75; }
.article-body strong { font-weight: 600; color: var(--navy); }
.article-pull { font-size: 1.15rem; font-weight: 500; color: var(--blue-dark); border-left: 4px solid var(--gold); padding: 0.75rem 1.5rem; margin: 2rem 0; line-height: 1.65; background: var(--pale-blue); border-radius: 0 12px 12px 0; }
.article-sig { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.article-sig-name { font-family: var(--display); font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.article-sig-role { font-size: 0.82rem; color: var(--muted); margin-top: 0.2rem; }
.article-cta-box { background: var(--pale-blue); border: 1.5px solid var(--border); border-radius: 16px; padding: 2rem 2.25rem; margin-top: 3rem; text-align: center; }
.article-cta-box h3 { font-family: var(--display); font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.article-cta-box p { font-size: 0.88rem; color: var(--muted); margin-bottom: 1.25rem; }

/* ============================================================
   PARTNER
   ============================================================ */
.partner-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin: 4rem 0; }
.partner-benefit { background: var(--white); border: 1.5px solid var(--border); border-radius: 16px; padding: 2.5rem; text-align: center; transition: var(--ease); }
.partner-benefit:hover { border-color: var(--blue-dark); box-shadow: 0 8px 32px rgba(22,40,104,0.1); transform: translateY(-4px); }
.partner-benefit-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.75rem; margin: 0 auto 1.5rem; }
.partner-benefit-title { font-family: var(--display); font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 0.65rem; }
.partner-benefit-text { font-size: 0.9rem; color: var(--muted); line-height: 1.75; }
.partner-who { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin: 3rem 0; }
.partner-who-item { background: var(--pale-blue); border-radius: 12px; padding: 1.75rem; display: flex; align-items: flex-start; gap: 1rem; }
.partner-who-ico { font-size: 1.5rem; flex-shrink: 0; margin-top: 0.1rem; }
.partner-who-title { font-family: var(--display); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.35rem; }
.partner-who-text { font-size: 0.85rem; color: var(--muted); line-height: 1.7; }
.partner-cta-box { background: linear-gradient(120deg, var(--navy) 0%, var(--blue-dark) 100%); border-radius: 20px; padding: 4rem; text-align: center; margin-top: 5rem; }
.partner-cta-box h2 { font-family: var(--display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; color: #fff; margin-bottom: 0.75rem; letter-spacing: -0.02em; }
.partner-cta-box p { font-size: 0.95rem; color: rgba(255,255,255,0.6); margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero, .mission-split, .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .trust-inner { flex-direction: column; text-align: center; gap: 1.5rem; }
  .trust-sub { max-width: 100%; }
  .feat-grid { grid-template-columns: 1fr; }
  .feat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .footer-g { grid-template-columns: 1fr; gap: 2rem; }
  .container, .hero, .ph { padding-left: 1.5rem; padding-right: 1.5rem; }
  .pgroup.active { grid-template-columns: 1fr 1fr; }
  .core-box { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-sticky { position: static; }
  .offer-grid { grid-template-columns: 1fr; }
  .notes-grid { grid-template-columns: 1fr; }
  .email-row { flex-direction: column; }
  .email-input { border-right: 2px solid var(--navy); border-bottom: none; border-radius: 8px 8px 0 0; }
  .email-btn { border-radius: 0 0 8px 8px; padding: 0.85rem; }
  .flow-steps::before { left: 32px; }
  .flow-step, .flow-step.even { display: block; padding-left: 70px; position: relative; }
  .flow-step .fs-mid, .flow-step.even .fs-mid { position: absolute; left: 6px; top: 1.5rem; }
  .flow-step .fs-empty, .flow-step.even .fs-empty { display: none; }
  .flow-step.even .fs-content { grid-column: auto; }
  .partner-benefits, .partner-who { grid-template-columns: 1fr; }
  .partner-cta-box { padding: 2.5rem 1.5rem; }
  .cta-bar { padding: 4rem 1.5rem; }
}

@media (max-width: 600px) {
  .pgroup.active { grid-template-columns: 1fr; }
  .footer-bot { flex-direction: column; gap: 0.5rem; }
}
