/* Sunflowers of Spectrum — shared theme tokens */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Nunito:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  /* Calm warm base */
  --cream:        #FBF6EC;
  --cream-deep:   #F4ECDA;
  --cream-card:   #FFFDF8;
  --sand-line:    #EAE0CC;

  /* Sage */
  --sage:         #8AA17C;
  --sage-soft:    #C6D3BC;
  --sage-tint:    #E7EEE0;
  --sage-deep:    #5C7150;

  /* Lavender */
  --lav:          #B49BD0;
  --lav-soft:     #DCCFEA;
  --lav-tint:     #EFE8F5;
  --lav-deep:     #7E6499;

  /* Ocean */
  --ocean:        #7FB1D4;
  --ocean-soft:   #CBE0EE;
  --ocean-tint:   #E6F1F7;
  --ocean-deep:   #4E84A8;

  /* Sunflower pops (logo + theme accents) */
  --pop-yellow:   #F4C84B;
  --pop-orange:   #F2994A;
  --pop-pink:     #EE85AB;
  --pop-purple:   #A77FC0;
  --pop-blue:     #6FA8D6;

  /* Ink */
  --ink:          #44423A;
  --ink-soft:     #6B6860;
  --ink-faint:    #9A968C;

  --radius-sm: 14px;
  --radius:    22px;
  --radius-lg: 34px;

  --shadow-soft: 0 18px 44px -28px rgba(92, 113, 80, 0.45);
  --shadow-card: 0 10px 30px -20px rgba(68, 66, 58, 0.35);
  --shadow-lift: 0 26px 60px -30px rgba(126, 100, 153, 0.42);

  --font-display: 'Quicksand', system-ui, sans-serif;
  --font-body:    'Nunito', system-ui, sans-serif;

  --maxw: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
}

h1, h2, h3, h4, .display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

a { color: inherit; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ---------- buttons ---------- */
.btn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 15px 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform .25s cubic-bezier(.2,.8,.3,1), box-shadow .25s, background .25s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }

.btn-primary {
  background: var(--sage);
  color: #fff;
  box-shadow: 0 14px 26px -14px rgba(92,113,80,.7);
}
.btn-primary:hover { background: var(--sage-deep); transform: translateY(-2px); box-shadow: 0 20px 34px -16px rgba(92,113,80,.75); }

.btn-ghost {
  background: rgba(255,255,255,.6);
  color: var(--ink);
  border: 1.5px solid var(--sand-line);
}
.btn-ghost:hover { background: #fff; transform: translateY(-2px); border-color: var(--sage-soft); }

.btn-lav { background: var(--lav); color: #fff; box-shadow: 0 14px 26px -14px rgba(126,100,153,.7); }
.btn-lav:hover { background: var(--lav-deep); transform: translateY(-2px); }

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: color-mix(in srgb, var(--cream) 78%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--sand-line) 70%, transparent);
}
.nav-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand-lockup { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.brand-lockup .mark { width: 46px; height: 46px; flex: none; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; color: var(--ink); line-height: 1; letter-spacing: -0.01em; }
.brand-sub  { font-family: var(--font-body); font-weight: 600; font-size: .72rem; color: var(--sage-deep); letter-spacing: .14em; text-transform: uppercase; margin-top: 4px; }

.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .98rem;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 9px 16px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background .2s, color .2s;
}
.nav-link:hover { background: var(--sage-tint); color: var(--sage-deep); }
.nav-link.active { background: var(--sage); color: #fff; }

/* ---------- pills / chips ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600; font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--sage-deep);
  background: var(--sage-tint);
  padding: 8px 16px; border-radius: 999px;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pop-orange); }

/* soft decorative blobs */
.blob { position: absolute; border-radius: 50%; filter: blur(8px); opacity: .5; pointer-events: none; }

@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .nav-inner { height: 70px; }
  .brand-sub { display: none; }
}
