:root{
  --bg: #1a0f2e;
  --panel: #2d1b4e;
  --panel-2: #251640;
  --text: #f0e7ff;
  --muted: #b8a7d4;
  --accent: #4ECDC4;
  --accent-2: #FF6B6B;
  --accent-3: #6B46C1;
  --ring: rgba(78,205,196,0.25);
  --link: #4ECDC4;
  --link-hover: #FF6B6B;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  line-height:1.6;
  color:var(--text);
  background: var(--bg);
  font-size:16px;
}

/* Global link styles for strong contrast */
a{color:var(--link);text-decoration:underline;text-decoration-thickness:1.5px;text-underline-offset:2px;text-decoration-color:rgba(78,205,196,0.7)}
a:hover{color:var(--link-hover);text-decoration-color:rgba(255,107,107,0.85)}

.container{max-width:1080px;margin:0 auto;padding:0 20px}
.narrow{max-width:800px}

.site-header{
  position:relative;
  border-bottom:1px solid rgba(255,255,255,0.06);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0));
}
.nav{
  display:flex;align-items:center;justify-content:space-between;
  height:64px;
}
.brand{font-weight:700;letter-spacing:0.2px;display:flex;align-items:center;gap:8px}
.brand-mark{height:18px;width:18px;display:inline-block}
.nav a{color:var(--text);text-decoration:none;margin-left:16px;opacity:0.9}
.nav a:hover{opacity:1}

.hero{position:relative;display:grid;grid-template-columns:1.1fr 0.9fr;gap:24px;align-items:center;padding:40px 0}
.hero > *{position:relative;z-index:1}
.hero-photo{
  position:absolute;inset:-16px -20px 0 -20px;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.20) 45%, rgba(0,0,0,0.05) 70%, rgba(0,0,0,0.00) 100%),
    url('assets/mcdc_banner.png');
  background-size:cover; background-position:center 40%;
  border-radius:16px; opacity:0.92; filter:saturate(1.05) contrast(1.02);
}
.hero-copy h1{margin:0 0 12px 0;font-size:clamp(28px, 4vw, 40px);line-height:1.1}
.hero-copy{max-width:680px;padding:16px 18px;border-radius:12px;background:rgba(0,0,0,0.45);border:1px solid rgba(255,255,255,0.12);box-shadow:0 10px 30px rgba(0,0,0,0.35);backdrop-filter:saturate(1.05) blur(2px)}
.hero-copy p{margin:0;max-width:none;color:var(--text);opacity:0.92}
.hero-copy .subnote{margin-top:10px;color:var(--muted);font-size:14px}
.hero-copy .subnote a{color:var(--link);opacity:1;text-decoration:underline}
.hero-copy .subnote a:hover{color:var(--link-hover)}
.hero-visual{display:flex;justify-content:flex-end}
/* legacy decorative svg retained for fallback elsewhere if needed */
/* .hero-bg{display:none} */

.section{padding:clamp(44px, 6vw, 64px) 0}
.section.tight{padding:24px 0}
.section + .section{box-shadow: inset 0 1px 0 rgba(255,255,255,0.06)}
.section:nth-of-type(even){
  background: rgba(255,255,255,0.02);
}
.section:nth-of-type(odd){
  background: transparent;
}
.section h2{margin-top:0;margin-bottom:8px;font-size:28px}
.section h3{margin-top:28px;margin-bottom:6px;font-size:18px}
.section p{color:var(--text)}

.checked{padding-left:18px}
.checked li{margin:6px 0}

.notice{
  margin-top:18px;padding:12px 14px;border:1px solid rgba(255,255,255,0.08);
  background: var(--panel);
  border-radius:10px;color:var(--muted)
}

/* Opt-in block */
.optin-box{
  padding:14px 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)), var(--panel);
  border:1px solid rgba(255,255,255,0.12);
  border-left:4px solid var(--accent-2);
  border-radius:10px;
}
.optin-box p{margin:0;color:var(--text)}

/* Cards */
.cards{display:grid;gap:16px;margin-top:12px}
.cards.two{grid-template-columns:1fr 1fr}
.cards.three{grid-template-columns:repeat(3, 1fr)}
.card{position:relative;background:var(--panel);border:1px solid rgba(255,255,255,0.08);border-radius:12px;padding:16px}
.card::before{content:"";position:absolute;left:8px;top:12px;bottom:12px;width:3px;border-radius:2px;background:linear-gradient(180deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05))}
.accent-declare::before{background:linear-gradient(180deg, rgba(78,205,196,0.9), rgba(78,205,196,0.25))}
.accent-divvy::before{background:linear-gradient(180deg, rgba(107,70,193,0.9), rgba(107,70,193,0.25))}
.accent-dine::before{background:linear-gradient(180deg, rgba(255,107,107,0.9), rgba(255,107,107,0.25))}
.card h3{margin-left:8px}
.card p{margin-left:8px}
.card ul{margin:8px 0 0 18px}
.card.quote{background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));}
.byline{margin-top:8px;color:var(--muted);font-size:14px}

/* Image grid removed */

/* Phone preview */
.phone{position:relative;width:300px;max-width:44vw;height:600px;border:1px solid rgba(255,255,255,0.12);background:var(--panel-2);border-radius:28px;box-shadow:0 20px 60px rgba(0,0,0,0.45), 0 0 0 6px rgba(255,255,255,0.04) inset;overflow:hidden}
.phone .notch{position:absolute;top:0;left:50%;transform:translateX(-50%);width:120px;height:26px;background:var(--panel);border-bottom-left-radius:14px;border-bottom-right-radius:14px;border:1px solid rgba(255,255,255,0.08);border-top:0}
.phone .screen{position:absolute;inset:40px 10px 14px 10px;overflow:auto;padding:8px;display:flex;flex-direction:column;gap:8px}
.bubble{max-width:78%;padding:10px 12px;border-radius:16px;line-height:1.4;font-size:14px}
.bubble.you{align-self:flex-end;background:rgba(78,205,196,0.15);border:1px solid rgba(78,205,196,0.35)}
.bubble.bot{align-self:flex-start;background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.12)}

.site-footer{
  border-top:1px solid rgba(255,255,255,0.06);
  padding:28px 0 36px;background:linear-gradient(0deg, rgba(255,255,255,0.02), rgba(255,255,255,0))
}
.footer-grid{display:grid;grid-template-columns:1.2fr 1fr 1.2fr;gap:24px;align-items:start}
.footer-links,.footer-contact{display:grid;gap:8px}
.footer-links a{color:var(--link);text-decoration:underline;text-decoration-thickness:1.5px;text-underline-offset:2px}
.footer-links a:hover{color:var(--link-hover)}
.muted{color:var(--muted)}
.tiny{margin-top:18px;font-size:12px}

@media (max-width: 860px){
  .hero{grid-template-columns:1fr;gap:18px}
  .hero-copy h1{font-size:32px}
  .hero-copy{padding:14px 14px;background:rgba(0,0,0,0.5)}
  .hero-visual{justify-content:flex-start}
  .phone{height:520px;width:280px}
  .footer-grid{grid-template-columns:1fr;gap:12px}
  .nav-links{display:none}
  .cards.two{grid-template-columns:1fr}
  .cards.three{grid-template-columns:1fr}
}

@media (max-width: 640px){
  .container{padding:0 16px}
  .hero{padding:24px 0}
  .hero-visual{display:none}
}

@media (min-width: 861px) and (max-width: 1200px){
  .phone{height:560px;width:290px}
}
