/* ═══════════════════════════════════════════
   MERIDIAN — landing.css
   Hero, features, pricing sections
═══════════════════════════════════════════ */

/* ── Hero ── */
.hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; padding-top: var(--nav-h); overflow: hidden; }
.hero-l { display: flex; flex-direction: column; justify-content: center; padding: 80px 64px 80px 80px; }

.eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: .18em;
  text-transform: uppercase; color: var(--sage);
  margin-bottom: 28px; display: flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--sage); }

h1.hero-t {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(54px, 5.5vw, 84px); font-weight: 300;
  line-height: 1.06; color: var(--ink); margin-bottom: 28px;
}
h1.hero-t em { font-style: italic; color: var(--warm); }

.hero-sub {
  font-size: 16px; line-height: 1.75; color: var(--muted);
  max-width: 420px; margin-bottom: 44px; font-weight: 300;
}

.actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

.hstats {
  display: flex; gap: 40px; margin-top: 56px;
  padding-top: 40px; border-top: 1px solid var(--div);
}
.snum { font-family: 'Cormorant Garamond', serif; font-size: 38px; font-weight: 300; }
.slbl { font-size: 12px; color: var(--muted); margin-top: 3px; }

.hero-r { position: relative; overflow: hidden; background: var(--deep); }
.ring-w { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.ring { border-radius: 50%; border: 1px solid rgba(200,169,110,.25); display: flex; align-items: center; justify-content: center; }
.r1 { width: 500px; height: 500px; animation: spin 50s linear infinite; }
.r2 { width: 340px; height: 340px; border-color: rgba(200,169,110,.4); animation: spin 30s linear infinite reverse; }
.r3 { width: 180px; height: 180px; border-color: rgba(200,169,110,.65); }
.r-mark { font-family: 'Cormorant Garamond', serif; font-size: 13px; letter-spacing: .35em; text-transform: uppercase; color: rgba(200,169,110,.9); font-weight: 300; }
.hdot { position: absolute; width: 4px; height: 4px; border-radius: 50%; background: rgba(200,169,110,.5); animation: blink 3s ease-in-out infinite; }
.hq { position: absolute; bottom: 52px; left: 36px; right: 36px; font-family: 'Cormorant Garamond', serif; font-size: 16px; font-style: italic; font-weight: 300; color: rgba(245,242,236,.5); line-height: 1.6; text-align: center; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes blink { 0%,100% { opacity: .3; transform: scale(1); } 50% { opacity: 1; transform: scale(2); } }

/* ── HOW grid ── */
.how-grid { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--div); margin-top: 52px; }
.how-item { padding: 36px 28px; border-right: 1px solid var(--div); }
.how-item:last-child { border-right: none; }
.how-num { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 300; color: var(--warm-l); margin-bottom: 20px; }
.how-title { font-size: 15px; font-weight: 500; margin-bottom: 9px; }
.how-desc { font-size: 13px; color: var(--muted); line-height: 1.7; font-weight: 300; }

/* ── Retention ── */
.ret-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 52px; }
.ret-card { background: var(--paper); border: 1px solid var(--div); border-radius: 2px; padding: 32px 28px; transition: transform .25s; }
.ret-card:hover { transform: translateY(-3px); }
.ret-icon-wrap { width: 44px; height: 44px; border-radius: 10px; background: var(--warm-dim); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.ret-title { font-size: 15px; font-weight: 500; margin-bottom: 10px; }
.ret-desc { font-size: 13px; color: var(--muted); line-height: 1.75; font-weight: 300; }
.ret-ex { margin-top: 14px; padding: 11px 14px; background: var(--warm-dim); border-radius: 2px; font-size: 12px; color: #7a5c1e; line-height: 1.6; }

/* ── Programs ── */
.prog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 48px; }
.prog-card { background: var(--paper); border: 1px solid var(--div); border-radius: 2px; padding: 30px; position: relative; overflow: hidden; transition: transform .25s; }
.prog-card:hover { transform: translateY(-3px); }
.prog-accent { position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.prog-lock { position: absolute; top: 14px; right: 14px; width: 28px; height: 28px; border-radius: 50%; background: var(--warm-dim); display: flex; align-items: center; justify-content: center; }
.prog-tag { display: inline-block; font-size: 10px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); padding: 3px 10px; border: 1px solid var(--div); border-radius: 1px; margin-bottom: 10px; }
.prog-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; line-height: 1.3; color: var(--ink); margin-bottom: 10px; }
.prog-desc { font-size: 12px; color: var(--muted); line-height: 1.7; font-weight: 300; }
.prog-meta { display: flex; justify-content: space-between; align-items: center; margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--div); font-size: 12px; color: var(--muted); }
.prog-price { font-size: 13px; font-weight: 500; color: var(--ink); }

/* ── Pricing ── */
.bill-row { display: flex; align-items: center; gap: 16px; margin-bottom: 40px; margin-top: 12px; }
.bill-lbl { font-size: 13px; color: var(--muted); }
.t-sw { position: relative; width: 44px; height: 24px; background: var(--warm); border-radius: 12px; cursor: pointer; transition: background .2s; flex-shrink: 0; }
.t-sw::after { content: ''; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; background: white; border-radius: 50%; transition: transform .2s; transform: translateX(20px); }
.t-sw.off { background: #c8c5be; }
.t-sw.off::after { transform: translateX(0); }
.t-save { font-size: 11px; color: var(--sage); background: rgba(122,140,110,.12); padding: 3px 10px; border-radius: 20px; font-weight: 500; }

.plans-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-bottom: 18px; }
.plan { border: 1px solid var(--div); padding: 38px 30px; border-radius: 2px; background: var(--paper); position: relative; overflow: hidden; transition: transform .25s; }
.plan:hover { transform: translateY(-2px); }
.plan.feat { background: var(--deep); border-color: var(--deep); }
.plan-badge { position: absolute; top: 16px; right: 16px; font-size: 10px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; background: var(--warm); color: var(--deep); padding: 3px 10px; border-radius: 1px; }
.plan-name { font-size: 11px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.feat .plan-name { color: rgba(200,169,110,.65); }
.plan-price { font-family: 'Cormorant Garamond', serif; font-size: 58px; font-weight: 300; line-height: 1; color: var(--ink); }
.feat .plan-price { color: var(--paper); }
.plan-price sup { font-size: 20px; vertical-align: super; font-family: 'DM Sans', sans-serif; font-weight: 300; }
.plan-period { font-size: 12px; color: var(--muted); margin-bottom: 6px; }
.feat .plan-period { color: rgba(245,242,236,.38); }
.plan-anote { font-size: 11px; color: var(--sage); font-weight: 500; margin-bottom: 24px; min-height: 16px; }
.feat .plan-anote { color: rgba(122,140,110,.75); }
.plan-sep { height: 1px; background: var(--div); margin-bottom: 22px; }
.feat .plan-sep { background: rgba(255,255,255,.1); }
.plan-feats { list-style: none; margin-bottom: 28px; }
.plan-feats li { font-size: 13px; color: var(--muted); padding: 7px 0; border-bottom: 1px solid var(--div); display: flex; align-items: flex-start; gap: 9px; font-weight: 300; line-height: 1.5; }
.feat .plan-feats li { color: rgba(245,242,236,.55); border-color: rgba(255,255,255,.07); }
.plan-feats li::before { content: ''; display: inline-block; width: 14px; height: 14px; flex-shrink: 0; margin-top: 1px; background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' fill='none' viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 7l3 3 6-6' stroke='%237a8c6e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }
.feat .plan-feats li::before { background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' fill='none' viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 7l3 3 6-6' stroke='%23c8a96e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.plan-feats li.no::before { background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' fill='none' viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 7h6' stroke='%23b0ac9e' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); }
.btn-plan { display: block; width: 100%; text-align: center; padding: 13px; border-radius: 2px; font-size: 13px; font-weight: 500; letter-spacing: .06em; cursor: pointer; border: none; transition: all .2s; font-family: 'DM Sans', sans-serif; text-decoration: none; }
.btn-outline-p { background: transparent; border: 1px solid var(--div) !important; color: var(--ink); }
.btn-outline-p:hover { border-color: var(--ink) !important; }
.btn-light { background: var(--paper); color: var(--deep); }
.btn-light:hover { background: var(--warm-l); }
.plan-note { font-size: 11px; color: var(--muted); text-align: center; margin-top: 12px; }
.feat .plan-note { color: rgba(245,242,236,.3); }

/* ── Corp row ── */
.corp-row { border: 1px solid var(--div); padding: 34px 38px; border-radius: 2px; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.corp-title { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 300; margin-bottom: 7px; }
.corp-title em { font-style: italic; color: var(--warm); }
.corp-sub { font-size: 14px; color: var(--muted); font-weight: 300; line-height: 1.6; max-width: 480px; }
.corp-tags { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 16px; }
.corp-tag { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.corp-price { font-family: 'Cormorant Garamond', serif; font-size: 46px; font-weight: 300; line-height: 1; text-align: right; }
.corp-period { font-size: 12px; color: var(--muted); text-align: right; margin-bottom: 14px; }

/* ── Testimonials ── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 48px; }
.testi { background: var(--paper); border: 1px solid var(--div); border-radius: 2px; padding: 30px; }
.testi-q { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-style: italic; font-weight: 300; line-height: 1.55; color: var(--ink); margin-bottom: 22px; }
.testi-q::before { content: '"'; font-size: 46px; color: var(--warm-l); line-height: 0; vertical-align: -16px; margin-right: 3px; }
.testi-a { display: flex; align-items: center; gap: 12px; }
.testi-av { width: 40px; height: 40px; border-radius: 50%; background: var(--warm-l); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 16px; color: var(--warm); flex-shrink: 0; }
.testi-name { font-size: 13px; font-weight: 500; }
.testi-role { font-size: 12px; color: var(--muted); }

/* ── CTA strip ── */
.cta-strip { background: var(--warm); padding: 80px; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.cta-t { font-family: 'Cormorant Garamond', serif; font-size: clamp(30px,3vw,48px); font-weight: 300; color: var(--deep); line-height: 1.2; }
.cta-t em { font-style: italic; }
.cta-s { font-size: 15px; color: rgba(30,43,26,.6); margin-top: 10px; font-weight: 300; }

/* ── Footer ── */
footer { background: var(--ink); padding: 60px 80px 40px; }
.ft { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.07); }
.fb { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--paper); margin-bottom: 12px; }
.fd { font-size: 13px; color: rgba(245,242,236,.35); line-height: 1.7; font-weight: 300; }
.fct { font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: rgba(245,242,236,.5); margin-bottom: 14px; }
.fcl { list-style: none; }
.fcl li { margin-bottom: 9px; }
.fcl a { font-size: 13px; color: rgba(245,242,236,.35); text-decoration: none; transition: color .2s; }
.fcl a:hover { color: var(--warm); }
.fbot { display: flex; justify-content: space-between; font-size: 12px; color: rgba(245,242,236,.22); }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-l { padding: 60px 24px 40px; }
  .hero-r { height: 280px; }
  .how-grid, .ret-grid, .prog-grid, .plans-grid, .testi-grid, .ft { grid-template-columns: 1fr; }
  .cta-strip, .corp-row { grid-template-columns: 1fr; padding: 56px 24px; }
  .r1 { width: 260px; height: 260px; }
  .r2 { width: 178px; height: 178px; }
  .r3 { width: 98px; height: 98px; }
  footer { padding: 48px 24px 32px; }
}
