/* Pod Ducks — full-width strips, large numbers, no cards no grids */
:root {
  --plum: #4a2c5a;
  --plum-dark: #331e3f;
  --lime: #b4d13b;
  --lime-dark: #9cb830;
  --pale: #eee8eb;
  --text: #1c141f;
  --text-light: #766c7a;
  --white: #fcfafb;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text); background: var(--white);
  line-height: 1.6;
}

/* Dot nav */
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 8%; background: var(--white);
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid rgba(0,0,0,0.02);
}
nav .brand { font-size: 1.1rem; font-weight: 700; color: var(--plum); }
nav .brand .p { color: var(--lime); }
nav .d-nav { display: flex; align-items: center; gap: 6px; }
nav .d-nav a {
  font-size: 0.72rem; font-weight: 500; color: var(--text-light);
  text-decoration: none; padding: 4px 10px; transition: 0.2s;
  text-transform: uppercase; letter-spacing: 1.5px;
}
nav .d-nav a:hover { color: var(--plum); }
nav .d-nav .dot { color: rgba(0,0,0,0.06); font-size: 0.5rem; }

/* Hero — giant centered */
.hero {
  min-height: 80vh; display: flex; align-items: center; justify-content: center;
  padding: 60px 8%; background: var(--white);
  text-align: center;
}
.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4rem); font-weight: 700;
  letter-spacing: -2px; line-height: 1.02; max-width: 700px;
}
.hero h1 .hl { color: var(--lime); display: inline-block; position: relative; }
.hero h1 .hl::after {
  content: ''; position: absolute; bottom: 2px; left: 0; right: 0;
  height: 6px; background: var(--lime); opacity: 0.3; border-radius: 2px;
}
.hero p { font-size: 0.95rem; color: var(--text-light); max-width: 440px; margin: 12px auto 0; }

/* Strip — alternating white/cream */
.strip { padding: 90px 8%; }
.strip:nth-child(even) { background: var(--pale); }
.strip:nth-child(odd) { background: var(--white); }
.strip-inner { max-width: 720px; margin: 0 auto; }
.strip-num {
  font-size: 3.5rem; font-weight: 800; color: var(--lime); opacity: 0.15;
  line-height: 1; margin-bottom: 4px; letter-spacing: -3px;
}
.strip h2 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); font-weight: 700; margin-bottom: 8px; }
.strip h2 .a { color: var(--plum); }
.strip p { font-size: 0.9rem; color: var(--text-light); line-height: 1.75; }
.strip p + p { margin-top: 12px; }

/* Accent band */
.band-accent {
  padding: 50px 8%; background: var(--plum);
  text-align: center;
}
.band-accent .big-word {
  font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; color: var(--white);
  letter-spacing: -1px; line-height: 1.1;
}
.band-accent .big-word .hl { color: var(--lime); }
.band-accent p {
  font-size: 0.82rem; color: rgba(255,255,255,0.4);
  max-width: 400px; margin: 8px auto 0;
}

/* Inline stats in text */
.stat-t { display: inline; font-weight: 700; color: var(--plum); }

/* CTA */
.cta {
  padding: 90px 8%; background: var(--lime);
  text-align: center;
}
.cta h2 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); color: var(--text); margin-bottom: 6px; }
.cta p { color: rgba(0,0,0,0.4); font-size: 0.85rem; margin-bottom: 20px; }
.cta .btn {
  display: inline-block; padding: 12px 34px; border-radius: 4px;
  background: var(--plum); color: var(--white); text-decoration: none;
  font-size: 0.78rem; font-weight: 600; transition: 0.3s;
}
.cta .btn:hover { background: var(--plum-dark); transform: translateY(-2px); }

/* Footer */
footer { padding: 24px 8%; background: var(--text); text-align: center; }
footer p { font-size: 0.65rem; color: rgba(255,255,255,0.2); }
footer a { color: var(--lime); text-decoration: none; }

/* Pages */
.p-hero { padding: 70px 8% 20px; background: var(--white); }
.p-hero h1 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); color: var(--plum); margin-bottom: 4px; }
.p-hero p { color: var(--text-light); font-size: 0.85rem; max-width: 460px; }
.p-body { padding: 16px 8% 70px; background: var(--white); }
.p-bi { max-width: 700px; }
.p-bi h2 { font-size: 0.95rem; margin: 22px 0 6px; color: var(--plum); }
.p-bi p, .p-bi li { font-size: 0.82rem; color: var(--text-light); line-height: 1.75; }
.p-bi ul { padding-left: 16px; margin: 4px 0 10px; }

/* Contact */
.cf { max-width: 520px; }
.cf .fg { margin-bottom: 12px; }
.cf label { display: block; font-size: 0.68rem; font-weight: 600; margin-bottom: 2px; }
.cf input, .cf textarea { width: 100%; padding: 8px 12px; border: 1px solid rgba(0,0,0,0.05); border-radius: 4px; font-size: 0.85rem; font-family: inherit; background: var(--pale); }
.cf input:focus, .cf textarea:focus { outline: none; border-color: var(--lime); }
.cf textarea { height: 70px; }
.cf .btn { padding: 10px 32px; border: none; border-radius: 4px; background: var(--plum); color: var(--white); font-size: 0.78rem; font-weight: 600; cursor: pointer; transition: 0.3s; }
.cf .btn:hover { background: var(--plum-dark); }
.cd { margin-top: 28px; font-size: 0.8rem; color: var(--text-light); line-height: 1.6; border-top: 1px solid rgba(0,0,0,0.04); padding-top: 18px; }
.cd strong { color: var(--text); }

@media (max-width: 768px) {
  nav .d-nav a { font-size: 0.65rem; letter-spacing: 1px; padding: 3px 6px; }
  .strip { padding: 60px 8%; }
}
