/* =====================================================================
   Say Less — shared styles. Warm, premium, motivational.
   Change brand colors here in one place.
   ===================================================================== */
:root {
  /* Primary — deep forest green (bold editorial ground). --teal name kept
     so every existing component repoints in one place. */
  --teal:      #2f4b3b;
  --teal-700:  #253c2f;
  --teal-500:  #46614f;
  /* Accent — khaki gold (the highlight box + the note card). */
  --gold:      #dcc47e;
  --gold-600:  #b6923a;   /* deeper gold for text on cream */
  /* Coral blush — the loud second voice. */
  --blush:     #f2a89f;
  --blush-50:  #fbe4e1;
  --mint:      #cddbcd;
  --mint-50:   #e7eee5;
  --sage:      #6e8571;
  /* Neutrals */
  --cream:     #f6f1e5;   /* warm paper */
  --cream-2:   #efe7d5;
  --ink:       #22322a;   /* near-black green */
  --ink-soft:  #5a675e;
  --line:      #e5ddca;
  --white:     #fdfbf5;
  --ok:        #3f8f6b;
  --radius:    16px;
  --radius-sm: 10px;
  --shadow:    0 12px 34px rgba(34, 50, 42, 0.14);
  --shadow-sm: 0 4px 14px rgba(34, 50, 42, 0.10);
  --font-display: "Poppins", "Inter", -apple-system, sans-serif;
  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
/* Bold SERIF headlines carry the editorial personality (the hero keeps its
   own sans display via .hero-head). */
h1, h2, h3 { font-family: var(--font-head); font-weight: 600; line-height: 1.05; letter-spacing: -.015em; color: var(--teal); margin: 0 0 .5em; }
h1 { font-size: clamp(2.3rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); }
p { margin: 0 0 1rem; }
a { color: var(--teal-500); }
.serif { font-family: var(--font-head); font-weight: 600; }

.container { width: min(1080px, 92vw); margin: 0 auto; }
.center { text-align: center; }
.muted { color: var(--ink-soft); }
.eyebrow {
  text-transform: uppercase; letter-spacing: .18em; font-size: .78rem;
  font-weight: 600; color: var(--gold-600);
}

/* Buttons */
.btn {
  display: inline-block; border: none; cursor: pointer; font-family: var(--font-body);
  font-weight: 600; font-size: 1rem; padding: .85rem 1.6rem; border-radius: 999px;
  text-decoration: none; transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn-primary { background: var(--teal); color: var(--white); border: 1.5px solid var(--gold); box-shadow: 0 3px 0 var(--gold-600); }
.btn-primary:hover { background: var(--teal-700); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--teal); border: 1.5px solid var(--teal-500); }
.btn-ghost:hover { background: var(--teal); color: var(--white); }
.btn-ghost-light { background: transparent; color: var(--white); border: 1.5px solid rgba(253,251,245,.55); }
.btn-ghost-light:hover { background: rgba(253,251,245,.12); }
.btn-block { display: block; width: 100%; text-align: center; }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none; }

/* Header / nav */
.site-header {
  position: sticky; top: 0; z-index: 20; backdrop-filter: blur(8px);
  background: rgba(246, 241, 229, 0.92); border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; padding: .9rem 0; }
.brand { display: inline-flex; align-items: center; gap: .18em; font-family: var(--font-display);
  font-weight: 800; font-size: 1.35rem; letter-spacing: -.02em; text-decoration: none; }
.brand .brand-say { color: var(--ink); }
.brand .brand-less { background: var(--gold); color: var(--ink); padding: .02em .3em; border-radius: 7px; }
.nav-cobrand { display: flex; align-items: center; gap: .55rem; background: var(--white);
  border: 1px solid var(--line); border-radius: 999px; padding: .3rem .9rem; box-shadow: var(--shadow-sm); }
.nav-cobrand img { height: 20px; width: auto; display: block; }
.nav-cobrand span { color: var(--sage); font-size: .85rem; }
.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links a { color: var(--ink); text-decoration: none; font-weight: 600; font-size: .92rem; }
.nav-links a:hover { color: var(--teal-500); }
.nav-join { color: var(--white) !important; padding: .55rem 1.1rem; font-size: .92rem; }
.nav-right { display: flex; align-items: center; gap: .9rem; }

/* Hero — bold forest editorial */
.hero { background: var(--teal); color: var(--white); position: relative; overflow: hidden;
  padding: clamp(2.4rem, 6vw, 4.8rem) 0 clamp(3rem, 7vw, 5.5rem); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; }
.hero-eyebrow { font-family: var(--font-body); text-transform: uppercase; letter-spacing: .16em;
  font-weight: 600; font-size: .8rem; color: var(--blush); margin: 0 0 .6rem; }
.hero-head { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.9rem, 7.5vw, 5.6rem);
  line-height: .9; letter-spacing: -.025em; display: flex; flex-direction: column; margin: 0 0 1.3rem; }
.hero-head .w { color: var(--white); }
.hero-head .b { color: var(--blush); }
.hero-lede { color: rgba(253,251,245,.85); font-size: 1.15rem; max-width: 36ch; margin: 0 0 1.6rem; }
.hero .cta-row { display: flex; gap: .9rem; flex-wrap: wrap; justify-content: flex-start; margin: 0; }
.hero-stats { display: flex; justify-content: space-between; gap: 2rem; margin: 2.8rem auto 0;
  padding-top: 1.6rem; border-top: 1px solid rgba(253,251,245,.22); max-width: 760px; text-align: center; }
.hero-stats > div { display: flex; flex-direction: column; align-items: center; flex: 1; }
.stat-n { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem, 4vw, 3rem); color: var(--gold); line-height: 1; }
.stat-l { font-size: .8rem; color: rgba(253,251,245,.7); margin-top: .25rem; }
.hero-card-wrap { display: flex; justify-content: center; }
.notecard { background: var(--gold); color: var(--teal-700); border-radius: 20px; padding: 2rem 1.9rem;
  width: min(370px, 100%); transform: rotate(2.5deg); box-shadow: -16px 18px 0 var(--blush); }
.nc-eyebrow { font-family: var(--font-body); font-weight: 700; letter-spacing: .14em; font-size: .72rem;
  text-transform: uppercase; opacity: .75; margin: 0; }
.nc-day { font-family: var(--font-display); font-weight: 800; font-size: 3.2rem; line-height: 1;
  letter-spacing: -.02em; margin: .05rem 0 1rem; text-transform: uppercase; }
.nc-label { font-size: .85rem; opacity: .7; margin: 0; }
.nc-task { font-family: var(--font-head); font-weight: 600; font-size: 1.35rem; line-height: 1.18; margin: .15rem 0 1.2rem; }
.nc-row { display: flex; justify-content: space-between; padding: .55rem 0; margin: 0;
  border-top: 1px solid rgba(37,60,47,.22); font-size: .95rem; }
.nc-row span:last-child { font-weight: 700; }

/* Hosts */
.hosts { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.host { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow-sm); }
.host h3 { font-size: 1.3rem; margin-bottom: .1rem; }
.host-brand { color: var(--gold-600); font-weight: 600; font-size: .9rem; margin: 0 0 .7rem; }
@media (max-width: 560px) { .nav-cobrand { display: none; } }
@media (max-width: 760px) { .hosts { grid-template-columns: 1fr; } }

/* ===================== ENERGY / MOTION ============================= */
/* Textured, layered hero ground (dots + a warm blush glow) */
.hero::before { content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(253,251,245,.07) 1.6px, transparent 1.6px);
  background-size: 22px 22px; }
.hero::after { content: ""; position: absolute; width: 360px; height: 360px; right: -90px; bottom: -130px;
  pointer-events: none; border-radius: 50%;
  background: radial-gradient(circle, rgba(242,168,159,.30), transparent 68%); }
.hero .container { position: relative; z-index: 1; }

/* Staggered entrance for the hero */
@keyframes rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.hero-eyebrow, .hero-head .w, .hero-head .b, .hero-lede, .hero .cta-row, .hero-stats { animation: rise .6s cubic-bezier(.2,.7,.2,1) both; }
.hero-head .w { animation-delay: .06s; } .hero-head .b { animation-delay: .14s; }
.hero-lede { animation-delay: .24s; } .hero .cta-row { animation-delay: .32s; } .hero-stats { animation-delay: .40s; }
.hero-card-wrap { animation: rise .7s cubic-bezier(.2,.7,.2,1) .28s both; position: relative; }

/* Playful floating note card + hover straighten */
@keyframes floaty { 0%,100% { transform: rotate(2.5deg) translateY(0); } 50% { transform: rotate(2.5deg) translateY(-10px); } }
.notecard { animation: floaty 6s ease-in-out infinite; transition: transform .3s ease, box-shadow .3s ease; }
.notecard:hover { animation-play-state: paused; transform: rotate(0deg) translateY(-4px) scale(1.02);
  box-shadow: -20px 22px 0 var(--blush); }

/* Rotated sticker badge pinned to the card */
.sticker { position: absolute; top: -22px; right: -16px; z-index: 3; width: 82px; height: 82px;
  background: var(--blush); color: var(--teal-700); border: 2.5px solid var(--teal-700); border-radius: 50%;
  display: flex; align-items: center; text-align: center; justify-content: center; padding: .4rem;
  font-family: var(--font-display); font-weight: 800; font-size: .62rem; line-height: 1.15; text-transform: uppercase;
  letter-spacing: .03em; transform: rotate(11deg); box-shadow: var(--shadow-sm); }

/* Scrolling marquee strip */
.marquee { background: var(--blush); color: var(--teal-700); overflow: hidden; white-space: nowrap;
  border-top: 3px solid var(--teal-700); border-bottom: 3px solid var(--teal-700); }
.marquee-track { display: inline-flex; will-change: transform; animation: marquee 24s linear infinite; }
.marquee span { display: inline-block; padding: .7rem 0; font-family: var(--font-display); font-weight: 800;
  font-size: 1.05rem; text-transform: uppercase; letter-spacing: .05em; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Punchier button hover */
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 5px 0 var(--gold-600); }

@media (prefers-reduced-motion: reduce) {
  .marquee-track, .notecard, .hero-eyebrow, .hero-head .w, .hero-head .b, .hero-lede,
  .hero .cta-row, .hero-stats, .hero-card-wrap { animation: none !important; }
  .notecard { transform: rotate(2.5deg); }
}
/* Centered hero */
.hero-center { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero-title { display: flex; flex-direction: column; gap: .1rem; margin-bottom: .6rem; }
.hero-sayless { font-family: var(--font-head); font-weight: 600; color: var(--teal); font-size: clamp(2.8rem, 8vw, 5.2rem); line-height: 1; }
.hero-sub { font-family: var(--font-head); font-weight: 500; color: var(--teal-500); font-size: clamp(1.2rem, 3.4vw, 2rem); line-height: 1.1; }
.center-lede { margin-left: auto; margin-right: auto; }
.cta-row { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; margin-top: .4rem; }
.hero .lede { font-size: 1.2rem; color: var(--ink-soft); max-width: 46ch; }
.cobrand { display: flex; gap: .9rem; align-items: center; font-size: .9rem; color: var(--ink-soft); margin-bottom: 1.4rem; }
.cobrand-center { justify-content: center; }
/* Price band below the centered hero */
.price-block { padding: 0 0 clamp(2.5rem, 6vw, 4rem); margin-top: -1rem; }
.center-card { max-width: 460px; margin: 0 auto; }
.cobrand-x { color: var(--sage); font-size: 1.1rem; }
.colomark { display: inline-flex; align-items: center; }
.colomark img { height: 40px; width: auto; display: block; }
.colomark.swag img { height: 34px; }  /* gold wordmark reads heavier; nudge down to balance */
.colomark-text { display: none; }
.colomark.noimg img { display: none; }
.colomark.noimg .colomark-text { display: inline-flex; }
.pill { background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: .3rem .8rem; font-weight: 600; color: var(--teal); font-size: .82rem; }
.pill.lm { background: var(--blush-50); border-color: var(--blush); color: #9a5450; }
.pill.swagher { background: var(--mint-50); border-color: var(--teal-500); color: var(--teal-700); }

/* Price card */
.price-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 1.8rem; text-align: center;
}
.price { font-family: var(--font-head); font-size: 3rem; color: var(--teal); line-height: 1; }
.price small { display:block; font-family: var(--font-body); font-size:.85rem; color: var(--ink-soft); font-weight:500; margin-top:.4rem; }
.price-card ul { list-style: none; padding: 0; margin: 1.2rem 0; text-align: left; }
.price-card li { padding: .35rem 0 .35rem 1.6rem; position: relative; color: var(--ink); }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--ok); font-weight: 700; }

/* Sections */
section.block { padding: clamp(3rem, 7vw, 5rem) 0; }
.section-head { max-width: 60ch; margin: 0 auto 2.5rem; text-align: center; }

/* Cards grid */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow-sm);
}
.card h3 { font-size: 1.15rem; }
.card .num { font-family: var(--font-head); color: var(--gold-600); font-size: 1.6rem; }

/* Focus area chips */
.chips { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; }
.chip { background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: .5rem 1rem; font-weight: 500; color: var(--teal-700); box-shadow: var(--shadow-sm); }

/* Timeline */
.timeline { display: grid; grid-template-columns: repeat(6, 1fr); gap: .8rem; }
.tl { text-align: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1rem .5rem; }
.tl .day { font-family: var(--font-head); font-size: 1.5rem; color: var(--teal); }
.tl .lbl { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gold-600); font-weight: 600; }

/* VV4BB callout */
.callout {
  background: var(--blush); color: var(--teal-700); border: 2.5px solid var(--teal-700);
  border-radius: 24px; padding: clamp(1.8rem, 4vw, 3rem); text-align: left;
  box-shadow: 14px 16px 0 var(--teal-700);
}
.callout h2 { color: var(--teal-700); font-size: clamp(2rem, 5vw, 3.2rem); }
.callout p { color: var(--teal-700); opacity: .85; max-width: 46ch; }
.callout .eyebrow { color: var(--teal-700) !important; }
.callout .btn { margin-top: .6rem; }

/* Big colored lane cards */
.lane-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; margin-top: 1.8rem; }
.lanecard { border-radius: 20px; padding: 1.6rem 1.4rem 2rem; min-height: 250px; display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm); transition: transform .18s ease; }
.lanecard:hover { transform: translateY(-5px); }
.lanecard .ln { font-family: var(--font-display); font-weight: 800; font-size: 2.1rem; line-height: 1; margin-bottom: 1.5rem; }
.lanecard h3 { font-size: 1.55rem; margin-bottom: .5rem; }
.lanecard p { font-size: .95rem; margin: 0; line-height: 1.5; }
.lanecard.gold   { background: var(--gold);  color: var(--teal-700); }
.lanecard.mint   { background: var(--mint);  color: var(--teal-700); }
.lanecard.blush  { background: var(--blush); color: var(--teal-700); }
.lanecard.forest { background: var(--teal);  color: var(--white); }
.lanecard.forest h3 { color: var(--white); }
@media (max-width: 820px) { .lane-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .lane-cards { grid-template-columns: 1fr; } }

/* Bold forest section (How it works) */
.block-forest { background: var(--teal); color: var(--white); }
.block-forest .eyebrow { color: var(--gold); }
.block-forest h2, .block-forest h3 { color: var(--white); }
.block-forest .section-head p { color: rgba(253,251,245,.82); }
.block-forest .card { background: rgba(253,251,245,.04); border: 1px solid rgba(253,251,245,.28); box-shadow: none; }
.block-forest .card p { color: rgba(253,251,245,.82); }
.block-forest .num { font-family: var(--font-head); color: var(--gold); font-size: 2.6rem; font-weight: 600; line-height: 1; margin-bottom: .3rem; }

/* Section intros a touch bolder */
.section-head p { font-size: 1.05rem; }

/* Milestone tiles — bold gold */
.tl { background: var(--gold); border: none; border-radius: 14px; padding: 1.1rem .4rem; box-shadow: var(--shadow-sm); }
.tl .lbl { color: var(--teal-700); opacity: .78; font-weight: 700; }
.tl .day { font-family: var(--font-head); font-weight: 600; color: var(--teal-700); font-size: 1.9rem; }

/* Hosts — photos + social/site links */
.host { display: grid; grid-template-columns: 96px 1fr; gap: 1.3rem; align-items: start; }
.host-photo { width: 96px; height: 96px; border-radius: 50%; overflow: hidden; position: relative; border: 3px solid var(--gold); }
.host-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.host-initials { display: none; }
.host-photo.noimg { display: flex; align-items: center; justify-content: center; }
.host-photo.noimg img { display: none; }
.host-photo.noimg .host-initials { display: block; font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: var(--teal-700); }
.host-photo.lm.noimg { background: var(--blush); }
.host-photo.fancy.noimg { background: var(--mint); }
.host-links { display: flex; gap: .6rem; margin-top: .9rem; flex-wrap: wrap; }
.host-links a { font-weight: 700; font-size: .85rem; color: var(--teal-700); background: var(--cream);
  border: 1.5px solid var(--teal-700); border-radius: 999px; padding: .35rem .95rem; text-decoration: none; }
.host-links a:hover { background: var(--teal); color: var(--white); }
@media (max-width: 520px) { .host { grid-template-columns: 1fr; } }

/* Inside the portal — 6 feature cards */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 1.8rem; }
.feature-card { background: var(--white); border: 1px solid var(--line); border-radius: 18px;
  padding: 1.7rem 1.6rem; box-shadow: var(--shadow-sm); transition: transform .16s ease; }
.feature-card:hover { transform: translateY(-4px); }
.fnum { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px;
  border-radius: 13px; background: var(--gold); color: var(--teal-700); font-family: var(--font-display);
  font-weight: 800; font-size: 1.25rem; margin-bottom: 1.1rem; }
.feature-card h3 { font-size: 1.5rem; margin-bottom: .4rem; }
.feature-card p { margin: 0; color: var(--ink-soft); }
@media (max-width: 820px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .feature-grid { grid-template-columns: 1fr; } }

/* ===================== COLOR POPS + LAYERING ====================== */
/* Milestone tiles rotate through the brand palette */
.tl:nth-child(3n+1) { background: var(--gold); }
.tl:nth-child(3n+2) { background: var(--blush); }
.tl:nth-child(3n+3) { background: var(--mint); }

/* Inside-the-portal cards: colored number badges + a layered offset shadow */
.feature-card:nth-child(3n+1) .fnum { background: var(--gold); }
.feature-card:nth-child(3n+2) .fnum { background: var(--blush); }
.feature-card:nth-child(3n+3) .fnum { background: var(--mint); }
.feature-card:nth-child(3n+1) { box-shadow: 8px 9px 0 rgba(220,196,126,.55); }
.feature-card:nth-child(3n+2) { box-shadow: 8px 9px 0 rgba(242,168,159,.55); }
.feature-card:nth-child(3n+3) { box-shadow: 8px 9px 0 rgba(205,219,205,.8); }

/* How-it-works (forest) cards: colored numbers + colored offset shadow */
.block-forest .card:nth-child(3n+1) .num { color: var(--blush); }
.block-forest .card:nth-child(3n+2) .num { color: var(--gold); }
.block-forest .card:nth-child(3n+3) .num { color: var(--mint); }
.block-forest .card:nth-child(3n+1) { box-shadow: 7px 8px 0 var(--blush); }
.block-forest .card:nth-child(3n+2) { box-shadow: 7px 8px 0 var(--gold); }
.block-forest .card:nth-child(3n+3) { box-shadow: 7px 8px 0 var(--mint); }

/* Footer */
.site-footer { border-top: 1px solid var(--line); padding: 2.5rem 0; color: var(--ink-soft); font-size: .9rem; }
.site-footer .nav { flex-wrap: wrap; gap: 1rem; }

/* Forms / auth pages */
.auth-wrap { min-height: 70vh; display: grid; place-items: center; padding: 2rem 0; }
.auth-card { width: min(440px, 92vw); background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 2rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .35rem; color: var(--teal-700); }
.field input, .field textarea, .field select {
  width: 100%; padding: .7rem .8rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 1rem; background: var(--cream); color: var(--ink);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--teal-500); }
.notice { padding: .8rem 1rem; border-radius: var(--radius-sm); font-size: .92rem; margin-bottom: 1rem; }
.notice.err { background: #fbeaea; color: #8a2b2b; }
.notice.ok { background: #e8f4ee; color: #226347; }
.tiny { font-size: .82rem; color: var(--ink-soft); }

/* ===================== APP / DASHBOARD ============================== */
.app-body { background: var(--cream); }
.app-main { padding: 2rem 0 4rem; }
.preview-banner { background: var(--mint-50); color: var(--teal-700); text-align: center;
  padding: .6rem 1rem; font-size: .9rem; font-weight: 500; border-bottom: 1px solid var(--mint); }

.onboarding { max-width: 620px; margin: 1rem auto; }

.status-strip { display: flex; justify-content: space-between; align-items: flex-start;
  gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.4rem; }
.status-strip h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
.lane-chip { display: inline-block; background: var(--blush-50); color: #9a5450; border: 1px solid var(--blush);
  border-radius: 999px; padding: .1rem .6rem; font-size: .78rem; font-weight: 600; margin-left: .4rem; }
.progress-badges { display: flex; gap: .8rem; }
.badge { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .7rem 1rem; text-align: center; min-width: 78px; box-shadow: var(--shadow-sm); }
.badge-num { font-family: var(--font-head); font-size: 1.6rem; color: var(--teal); line-height: 1; }
.badge-lbl { font-size: .68rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-soft); margin-top: .2rem; }

.today-card { border-left: 5px solid var(--gold); margin-bottom: 2rem; }
.today-card h2 { margin-top: .2rem; }
.check-btn { margin-top: 1rem; font-size: 1.05rem; }

.dash-section { margin-bottom: 2.4rem; }
.dash-head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  border-bottom: 1px solid var(--line); padding-bottom: .5rem; margin-bottom: 1rem; }
.dash-head h2 { font-size: 1.3rem; margin: 0; }

.score-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(84px, 1fr)); gap: .6rem; }
.week { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .7rem .4rem; text-align: center; }
.week.future { opacity: .5; }
.week-lbl { font-size: .72rem; color: var(--ink-soft); }
.week-score { font-family: var(--font-head); font-size: 1.3rem; color: var(--teal); }

.milestone-list { display: grid; gap: .8rem; }
.milestone { display: grid; grid-template-columns: 110px 1fr; gap: 1rem; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem; }
.milestone.upcoming { opacity: .7; }
.milestone.reached { border-left: 5px solid var(--teal); }
.m-day { font-family: var(--font-head); font-size: 1.2rem; color: var(--teal); }
.m-body h3 { margin: 0 0 .3rem; font-size: 1.1rem; }
.m-body textarea { width: 100%; margin: .5rem 0; padding: .6rem .7rem; border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); font-family: var(--font-body); background: var(--cream); }

.resource-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }
.resource { display: block; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.1rem; text-decoration: none; color: var(--ink); box-shadow: var(--shadow-sm); transition: transform .12s ease; }
.resource:hover { transform: translateY(-2px); }
.resource.nolink { cursor: default; }
.r-cat { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gold-600); font-weight: 600; }
.r-title { font-family: var(--font-head); font-size: 1.05rem; color: var(--teal); margin: .2rem 0; }
.r-desc { font-size: .9rem; }

/* ===================== ADMIN ======================================= */
.admin-tag { font-family: var(--font-body); font-size: .7rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .08em; background: var(--gold); color: var(--teal); padding: .1rem .5rem; border-radius: 6px; vertical-align: middle; }
.tabs { display: flex; gap: .4rem; border-bottom: 1px solid var(--line); margin-bottom: 1.6rem; flex-wrap: wrap; }
.tab { background: none; border: none; font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  color: var(--ink-soft); padding: .7rem 1rem; cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -1px; }
.tab:hover { color: var(--teal); }
.tab.active { color: var(--teal); border-bottom-color: var(--gold); }

.calendar { display: grid; grid-template-columns: repeat(10, 1fr); gap: .4rem; margin: 1rem 0; }
.cal-cell { position: relative; aspect-ratio: 1; border-radius: 8px; border: 1px solid var(--line);
  background: var(--white); cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1rem; color: var(--ink-soft); transition: transform .1s ease; }
.cal-cell:hover { transform: scale(1.06); border-color: var(--teal-500); }
.cal-cell.has { background: #e6f0ea; border-color: var(--ok); color: var(--teal-700); }
.cal-cell.draft { background: #fbf1d9; border-color: var(--gold); color: var(--gold-600); }
.cal-cell.empty { background: var(--white); }
.cal-cell.today { box-shadow: 0 0 0 2px var(--teal); }
.cal-cell.milestone { border-width: 2px; border-style: dashed; }
.cal-num { font-size: .95rem; }
.cal-who { position: absolute; bottom: 2px; right: 4px; font-family: var(--font-body); font-size: .55rem; font-weight: 700; color: var(--ink-soft); }

.editor { margin-top: 1.4rem; border-left: 5px solid var(--gold); }
.editor-actions { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: .4rem; }
.x-btn { background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--ink-soft); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.live-dot, .code-chip .tiny { font-family: var(--font-body); }
.live-dot { font-size: .65rem; background: var(--ok); color: #fff; padding: .1rem .45rem; border-radius: 999px; vertical-align: middle; text-transform: uppercase; letter-spacing: .05em; }

.codes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: .6rem; }
.code-chip { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: .6rem .8rem;
  display: flex; flex-direction: column; gap: .2rem; }
.code-chip code { font-family: ui-monospace, Menlo, monospace; font-size: 1.05rem; color: var(--teal); font-weight: 600; letter-spacing: .04em; }
.code-chip.used { opacity: .5; }
.code-chip.used code { text-decoration: line-through; }

@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(3, 1fr); }
  .nav-links { display: none; }
  .milestone { grid-template-columns: 1fr; }
  .status-strip { flex-direction: column; }
  .calendar { grid-template-columns: repeat(7, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
}

/* Host studio — same Soft Simple CEO × SwagHer language as the prototype. */
.admin-body {
  --teal: #294d4a;
  --teal-700: #234440;
  --teal-500: #3f6663;
  --gold: #d9c07c;
  --gold-600: #866b31;
  --blush: #f3b3ac;
  --mint: #b2cbcb;
  --cream: #fbf8f0;
  --cream-2: #edf2ef;
  --white: #fff;
  --ink: #263736;
  --ink-soft: #6b8387;
  --line: #dbe3e1;
  --radius: 22px;
  background: var(--cream);
}
.admin-body h1, .admin-body h2, .admin-body h3 { font-family: "Merriweather", Georgia, serif; letter-spacing: -.025em; }
.admin-shell { min-height: 100vh; display: grid; grid-template-columns: 258px minmax(0, 1fr); }
.admin-sidebar { background: #294d4a; color: #eef4f1; padding: 33px 20px 24px; min-height: 100vh; position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column; }
.admin-brand { color: white; text-decoration: none; font: 800 1.9rem/1 "League Spartan", sans-serif; letter-spacing: -.06em; white-space: nowrap; margin: 0 8px 28px; }
.admin-brand span { display: inline-block; background: var(--gold); color: #294d4a; padding: 5px 7px 2px; transform: rotate(-2deg); }
.admin-partners { display: flex; align-items: center; justify-content: center; gap: 7px; background: #fbf8f0; border: 1px solid #e2ddcf; padding: 9px 8px; border-radius: 999px; box-shadow: 0 5px 15px rgba(0,0,0,.12); margin-bottom: 37px; min-height: 47px; }
.admin-partners img { display: block; object-fit: contain; width: 91px; height: 26px; }
.admin-partners span { color: #6b8387; font-weight: 800; }
.admin-nav-label { color: var(--gold); font-size: .7rem; font-weight: 800; letter-spacing: .18em; margin: 0 12px 12px; }
.admin-sidebar .tabs { display: grid; gap: 5px; border: 0; margin: 0; }
.admin-sidebar .tab { display: block; width: 100%; border: 0; border-radius: 12px; margin: 0; padding: 13px 14px; color: #d5e3df; text-align: left; font-weight: 700; }
.admin-sidebar .tab:hover, .admin-sidebar .tab.active { color: #fff; background: #416763; }
.admin-sidebar .tab.active { box-shadow: inset 4px 0 0 var(--gold); }
.admin-sidebar .tab[hidden] { display: none; }
.admin-side-bottom { display: grid; gap: 10px; margin-top: auto; padding: 20px 12px 0; border-top: 1px solid #4a6c69; font-size: .83rem; color: #c0d2cd; }
.admin-side-bottom a { color: #f0e0ad; text-decoration: none; font-weight: 700; }
.admin-side-bottom a:hover { text-decoration: underline; }
.admin-content { min-width: 0; }
.admin-body .preview-banner { background: #f7e1dc; color: #69433e; border-bottom: 1px solid #edc5bd; text-align: left; padding: 9px clamp(22px,4vw,50px); font-size: .79rem; font-weight: 700; }
.admin-main { max-width: 1450px; margin: 0 auto; padding: 28px clamp(22px,4vw,50px) 70px; }
.admin-intro { color: white; min-height: 210px; display: flex; justify-content: space-between; align-items: center; gap: 22px; background: linear-gradient(125deg,#294d4a 0%,#385f5b 76%,#6b8387 100%); border-radius: 25px; padding: 30px 37px; overflow: hidden; position: relative; box-shadow: 8px 8px 0 var(--blush); }
.admin-intro .eyebrow { color: var(--gold); font-size: .72rem; }
.admin-intro h1 { color: white; font-size: clamp(2.2rem,4vw,4rem); margin: 0 0 10px; }
.admin-intro h1 em { color: var(--blush); font-style: normal; }
.admin-intro p:last-child { margin: 0; color: #e1efeb; max-width: 600px; }
.admin-intro-mark { color: var(--gold); font: 800 clamp(4rem,9vw,8rem)/.72 "League Spartan",sans-serif; letter-spacing: -.08em; text-align: center; transform: rotate(8deg); opacity: .92; }
.admin-intro-mark span { display: block; font: 800 .88rem/1 "Inter",sans-serif; letter-spacing: .3em; margin-top: 13px; }
.admin-overview { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; margin: 30px 0 26px; }
.admin-stat { padding: 18px 20px; border-radius: 18px; border: 1px solid #d9e0dc; box-shadow: 0 7px 18px rgba(41,77,74,.06); background: white; display: grid; gap: 3px; }
.admin-stat:nth-child(1) { background: var(--gold); border-color: #cbb16b; }
.admin-stat:nth-child(2) { background: #dceae7; }
.admin-stat:nth-child(3) { background: #f6d8d4; }
.admin-stat:nth-child(4) { background: #fff; }
.admin-stat span { font-size: .68rem; letter-spacing: .12em; font-weight: 800; color: #43605b; }
.admin-stat strong { font: 800 2.8rem/.98 "League Spartan",sans-serif; color: #294d4a; }
.admin-stat small { color: #5c716e; font-size: .77rem; }
.admin-main .tab-panel { background: #fff; border: 1px solid var(--line); border-radius: 23px; padding: clamp(18px,3vw,32px); box-shadow: 0 14px 32px rgba(41,77,74,.07); }
.admin-main .dash-head { align-items: center; }
.admin-main .dash-head h2 { font-size: clamp(1.22rem,2.2vw,1.8rem); }
.admin-main .calendar { grid-template-columns: repeat(10,minmax(0,1fr)); gap: 7px; }
.admin-main .cal-cell { border-radius: 10px; background: #fbf8f0; min-width: 0; }
.admin-main .cal-cell.has { background: #dceae7; border-color: #9dbeb8; color: #294d4a; }
.admin-main .cal-cell.draft { background: #f9edc7; border-color: #d9c07c; color: #685123; }
.admin-main .cal-cell.today { box-shadow: 0 0 0 2px #294d4a; }
.admin-main .card { background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 6px 20px rgba(41,77,74,.06); }
.admin-main .btn-primary { background: #294d4a; color: white; box-shadow: 4px 4px 0 var(--gold); }
.admin-main .btn-ghost { border-color: #789196; color: #294d4a; }
.admin-main .resource { box-shadow: 0 5px 15px rgba(41,77,74,.06); }
/* Daily coverage: an editorial planner, not a utility grid. */
.coverage-heading { display: flex; justify-content: space-between; align-items: end; gap: 20px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.coverage-kicker, .composer-kicker, .preview-label { margin: 0 0 9px; color: #986d63; font: 800 .7rem/1.2 "Inter",sans-serif; letter-spacing: .17em; }
.coverage-heading h2 { margin: 0 0 9px; color: #294d4a; font-size: clamp(1.5rem,2.7vw,2.2rem); }
.coverage-heading h2 em { color: #b86f69; font-style: italic; }
.coverage-heading p:last-child { margin: 0; color: #627873; font-size: .9rem; }
.coverage-count { min-width: 100px; text-align: center; background: #f3b3ac; border-radius: 16px; padding: 12px 16px 10px; transform: rotate(3deg); }
.coverage-count strong { display: block; color: #294d4a; font: 800 2.7rem/.9 "League Spartan",sans-serif; }
.coverage-count span { color: #465b57; font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.coverage-progress { height: 10px; margin-top: 22px; overflow: hidden; border-radius: 99px; background: #e3eeea; border: 1px solid #d5e3df; }
.coverage-progress span { display: block; height: 100%; width: 0; background: linear-gradient(90deg,#6b8387,#294d4a); border-radius: inherit; transition: width .25s ease; }
.coverage-meta { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 12px; color: #526c67; font-size: .79rem; font-weight: 700; }
.coverage-legend { display: flex; gap: 13px; flex-wrap: wrap; }
.coverage-legend span { display: inline-flex; align-items: center; gap: 5px; }
.coverage-legend i { display: inline-block; width: 9px; height: 9px; border-radius: 50%; }
.legend-live { background: #6b8387; }.legend-draft { background: #d9c07c; }.legend-open { background: #e8e9df; border: 1px solid #c8d2ce; }.legend-milestone { background: #f3b3ac; }
.admin-main .calendar { grid-template-columns: repeat(7,minmax(0,1fr)); gap: 9px; margin-top: 21px; }
.admin-main .cal-cell { aspect-ratio: auto; min-height: 114px; padding: 10px; border: 1px solid #dae5df; border-radius: 13px; background: #fbf8f0; text-align: left; display: flex; flex-direction: column; align-items: stretch; justify-content: space-between; font-family: "Inter",sans-serif; color: #294d4a; box-shadow: 0 3px 0 #e7e9de; transition: transform .15s ease, box-shadow .15s ease; }
.admin-main .cal-cell:hover { transform: translateY(-3px); box-shadow: 0 7px 0 #c4d9d4; }
.admin-main .cal-cell:focus-visible { outline: 3px solid #b86f69; outline-offset: 2px; }
.admin-main .cal-cell.has { background: #dceae7; border-color: #9dbeb8; color: #294d4a; box-shadow: 0 3px 0 #a6c4be; }
.admin-main .cal-cell.draft { background: #fbefc9; border-color: #dfc985; color: #504b3b; box-shadow: 0 3px 0 #d9c07c; }
.admin-main .cal-cell.today { outline: 2px solid #294d4a; outline-offset: 2px; box-shadow: 0 3px 0 #294d4a; }
.admin-main .cal-cell.milestone { border: 2px solid #e99991; background-image: linear-gradient(145deg,rgba(243,179,172,.3),transparent 63%); }
.cal-top { display: flex; align-items: baseline; gap: 4px; }
.cal-day-word { font-size: .54rem; letter-spacing: .14em; font-weight: 800; opacity: .7; }
.admin-main .cal-num { font: 800 1.65rem/.85 "League Spartan",sans-serif; letter-spacing: -.04em; }
.cal-task { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font-size: .67rem; font-weight: 700; line-height: 1.25; max-width: 100%; }
.cal-cell.empty .cal-task { color: #78908a; font-weight: 500; }
.cal-foot { display: flex; justify-content: space-between; align-items: center; gap: 4px; width: 100%; }
.cal-status { font-size: .58rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.admin-main .cal-who { position: static; font-size: .55rem; }
.cal-star { color: #b86f69; font-size: .9rem; line-height: 1; }
/* The prompt writer echoes the participant's Today's Say Less card. */
.admin-main .task-composer { margin-top: 30px; overflow: hidden; border: 1px solid #b8d0c9; border-radius: 22px; background: white; box-shadow: 7px 7px 0 #f3b3ac; }
.composer-head { display: flex; justify-content: space-between; align-items: start; gap: 18px; background: #294d4a; color: white; padding: 25px clamp(20px,3vw,32px); }
.composer-head h3 { margin: 0 0 8px; color: white; font-size: clamp(1.35rem,2.4vw,1.9rem); }
.composer-head p:last-child { margin: 0; color: #d7e7e1; font-size: .86rem; max-width: 540px; }
.composer-head .composer-kicker { color: #d9c07c; }
.composer-head .x-btn { color: white; background: #436b67; width: 35px; height: 35px; border-radius: 50%; flex: none; }
.composer-grid { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(270px,.9fr); gap: clamp(20px,3vw,34px); padding: clamp(20px,3vw,32px); }
.composer-form .field { margin-bottom: 19px; }
.composer-form .field label { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; color: #294d4a; font-size: .98rem; }
.composer-form .field label span { color: #a16e68; font-size: .59rem; letter-spacing: .14em; font-weight: 800; }
.composer-form .field input, .composer-form .field textarea { background: #fbf8f0; border: 1px solid #c8d9d3; border-radius: 12px; padding: 12px 14px; line-height: 1.45; }
.composer-form .field input:focus, .composer-form .field textarea:focus { outline: 2px solid #d9c07c; border-color: #294d4a; }
.composer-hint { color: #6b8387; font-size: .77rem; margin: -7px 0 17px; }
.composer-preview-wrap { border-left: 1px solid #dbe3e1; padding-left: clamp(20px,3vw,34px); }
.composer-preview { background: #fbf8f0; border: 1px solid #e4dbc0; border-radius: 19px; padding: 23px; min-height: 310px; display: flex; flex-direction: column; box-shadow: 6px 6px 0 #d9c07c; }
.preview-top { display: flex; justify-content: space-between; align-items: center; gap: 8px; color: #294d4a; font-size: .65rem; font-weight: 800; letter-spacing: .11em; }
.preview-top span:last-child { background: #dceae7; border-radius: 99px; padding: 5px 9px; }
.preview-eyebrow { color: #a16e68; font-size: .68rem; font-weight: 800; letter-spacing: .13em; margin: 28px 0 10px; }
.composer-preview h4 { color: #294d4a; font: 700 clamp(1.2rem,2vw,1.65rem)/1.25 "Merriweather",Georgia,serif; margin: 0 0 14px; overflow-wrap: anywhere; }
.composer-preview > p:not(.preview-eyebrow) { color: #4d625e; font-size: .85rem; line-height: 1.6; white-space: pre-wrap; overflow-wrap: anywhere; }
.preview-bottom { border-top: 1px solid #d8d8c8; padding-top: 13px; margin-top: auto; display: flex; justify-content: space-between; color: #6b8387; font-size: .6rem; font-weight: 800; letter-spacing: .12em; }
.preview-bottom span { color: #bc7770; font-size: 1rem; }
@media (max-width: 1200px) { .admin-main .calendar { grid-template-columns: repeat(6,minmax(0,1fr)); } }
@media (max-width: 1000px) {
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; height: auto; min-height: 0; padding: 18px 24px 14px; }
  .admin-brand { margin: 0 0 16px; font-size: 1.7rem; }
  .admin-partners { width: max-content; margin: 0 0 16px; }
  .admin-nav-label { display: none; }
  .admin-sidebar .tabs { display: flex; flex-wrap: wrap; gap: 6px; }
  .admin-sidebar .tab { width: auto; padding: 9px 12px; white-space: nowrap; }
  .admin-sidebar .tab.active { box-shadow: inset 0 -3px 0 var(--gold); }
  .admin-side-bottom { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 10px; padding: 10px 0 0; }
  .admin-main .calendar { grid-template-columns: repeat(7,minmax(0,1fr)); }
}
@media (max-width: 680px) {
  .admin-intro { padding: 24px; min-height: 0; }
  .admin-intro-mark { display: none; }
  .admin-overview { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .admin-main .calendar { grid-template-columns: repeat(4,minmax(0,1fr)); gap: 6px; }
  .admin-main .cal-cell { min-height: 104px; padding: 8px; }
  .composer-grid { grid-template-columns: 1fr; }
  .composer-preview-wrap { border-left: 0; border-top: 1px solid #dbe3e1; padding: 23px 0 0; }
  .coverage-heading { align-items: start; }
  .admin-stat { padding: 15px; }
  .admin-stat strong { font-size: 2.4rem; }
}
