/* RoundUp marketing site — shared base styles, locked to brand kit v1.1 */
:root {
  --yellow:   #FFC857;
  --rose:     #E8586D;
  --lavender: #B499D4;
  --teal:     #A7E4E4;
  --pink:     #F498B5;
  --ink:      #2A1633;
  --cream:    #FAF4E8;
  --bg:       #FAF4E8;
  --card:     #FFFFFF;
  --muted:    #6E6072;
  --hairline: #E8DFD0;
  --shadow-sm: 0 1px 2px rgba(42,22,51,.06);
  --shadow-md: 0 4px 12px rgba(42,22,51,.08);
  --shadow-lg: 0 16px 36px rgba(42,22,51,.14);
  --shadow-xl: 0 28px 64px rgba(42,22,51,.18);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Sora', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: var(--bg); color: var(--ink);
  font-weight: 400; line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 760px) { .wrap { padding: 0 24px; } }

/* NAV */
nav.site-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,244,232,.85); backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--hairline);
}
nav.site-nav .row { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
nav.site-nav .logo img { height: 36px; display: block; }
nav.site-nav .links { display: flex; gap: 28px; align-items: center; }
nav.site-nav .links a { color: var(--ink); text-decoration: none; font-size: 14px; font-weight: 600; }
nav.site-nav .links a:hover, nav.site-nav .links a.active { color: var(--rose); }

/* Mobile hamburger button — hidden on desktop, visible <760px */
nav.site-nav .hamburger {
  display: none;
  background: transparent; border: 1px solid var(--hairline); border-radius: 12px;
  width: 44px; height: 40px; padding: 0;
  cursor: pointer; align-items: center; justify-content: center;
  margin-left: 10px;
}
nav.site-nav .hamburger:hover { border-color: var(--ink); }
nav.site-nav .hamburger .bars {
  display: block; width: 18px; height: 2px; background: var(--ink); position: relative;
  transition: background .12s ease;
}
nav.site-nav .hamburger .bars::before,
nav.site-nav .hamburger .bars::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink);
  transition: transform .15s ease, top .15s ease;
}
nav.site-nav .hamburger .bars::before { top: -6px; }
nav.site-nav .hamburger .bars::after { top: 6px; }
nav.site-nav .hamburger[aria-expanded="true"] .bars { background: transparent; }
nav.site-nav .hamburger[aria-expanded="true"] .bars::before { top: 0; transform: rotate(45deg); }
nav.site-nav .hamburger[aria-expanded="true"] .bars::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 760px) {
  nav.site-nav .hamburger { display: inline-flex; }
  nav.site-nav .links {
    position: absolute; top: 100%; right: 0; left: 0;
    flex-direction: column; gap: 0; align-items: stretch;
    background: var(--cream); border-bottom: 1px solid var(--hairline);
    padding: 8px 24px 24px;
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity .15s ease, transform .15s ease;
    box-shadow: 0 16px 32px rgba(42,22,51,.08);
  }
  nav.site-nav .links[data-open="true"] {
    transform: translateY(0); opacity: 1; pointer-events: auto;
  }
  nav.site-nav .links a {
    padding: 14px 4px; border-bottom: 1px solid var(--hairline);
    font-size: 16px;
  }
  nav.site-nav .links a:last-child { border-bottom: 0; }
  nav.site-nav .links a.cta {
    margin-top: 12px; text-align: center; border: 0;
    padding: 14px 22px;
  }
}

/* CTAs */
.cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px;
  background: var(--ink); color: #fff !important;
  font-weight: 600; font-size: 14px; text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease;
}
.cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.cta-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px;
  background: transparent; color: var(--ink) !important;
  font-weight: 600; font-size: 14px; text-decoration: none;
  border: 1px solid var(--ink);
}
.cta-ghost:hover { background: var(--ink); color: #fff !important; }

/* Headings */
h1.page-h { font-size: 64px; line-height: 1.05; letter-spacing: -0.025em; font-weight: 600; margin: 0 0 24px; }
@media (max-width: 760px) { h1.page-h { font-size: 44px; } }
h1.page-h .tinted { color: var(--rose); }

h2.section-h {
  font-size: 44px; line-height: 1.1; letter-spacing: -0.02em; font-weight: 600;
  text-align: center; max-width: 800px; margin: 0 auto 20px;
}
@media (max-width: 760px) { h2.section-h { font-size: 32px; } }

.section-eyebrow {
  display: block; text-align: center;
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--rose);
  margin-bottom: 12px;
}
.section-lede {
  text-align: center; color: var(--muted); font-size: 18px;
  max-width: 640px; margin: 0 auto 64px;
}

/* Hero with brand blobs */
.hero-blobs { position: relative; overflow: hidden; }
.hero-blobs::before {
  content: ""; position: absolute; left: -200px; top: -260px;
  width: 760px; height: 760px; border-radius: 50%;
  background: var(--yellow); opacity: 0.45;
  pointer-events: none; z-index: 0;
}
.hero-blobs::after {
  content: ""; position: absolute; right: -180px; bottom: -240px;
  width: 540px; height: 540px; border-radius: 50%;
  background: var(--pink); opacity: 0.35;
  pointer-events: none; z-index: 0;
}
.hero-blobs > .wrap { position: relative; z-index: 1; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--rose);
  padding: 6px 14px; border: 1px solid var(--hairline); border-radius: 999px;
  background: rgba(255,255,255,.6);
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--rose); }

/* FOOTER */
footer.site-footer { border-top: 1px solid var(--hairline); padding: 64px 0 32px; color: var(--muted); font-size: 13px; margin-top: 96px; }
footer.site-footer .top {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px;
  padding-bottom: 40px; border-bottom: 1px solid var(--hairline); margin-bottom: 24px;
}
@media (max-width: 760px) { footer.site-footer .top { grid-template-columns: 1fr; gap: 40px; } }
footer.site-footer .top .pitch h3 { font-size: 22px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; margin: 0 0 8px; }
footer.site-footer .top .pitch p { font-size: 14px; line-height: 1.55; margin: 0; max-width: 420px; }
footer.site-footer .newsletter { display: flex; flex-direction: column; gap: 12px; }
footer.site-footer .newsletter label { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
footer.site-footer .newsletter form { display: flex; gap: 8px; flex-wrap: wrap; }
footer.site-footer .newsletter input[type="email"] {
  flex: 1; min-width: 200px;
  padding: 12px 18px; border-radius: 999px; border: 1px solid var(--hairline);
  background: white; color: var(--ink); font-family: inherit; font-size: 14px;
}
footer.site-footer .newsletter input[type="email"]:focus { outline: none; border-color: var(--ink); }
footer.site-footer .newsletter button {
  padding: 12px 22px; border-radius: 999px; border: 0; background: var(--ink); color: white;
  font-family: inherit; font-weight: 600; font-size: 14px; cursor: pointer;
}
footer.site-footer .newsletter button:hover { background: var(--rose); }
footer.site-footer .newsletter .micro { font-size: 11px; color: var(--muted); margin: 0; }
footer.site-footer .row { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
footer.site-footer .brand { display: flex; align-items: center; gap: 12px; color: var(--ink); font-weight: 600; }
footer.site-footer .brand img { height: 28px; }
footer.site-footer .links { display: flex; gap: 20px; flex-wrap: wrap; }
footer.site-footer .links a { color: var(--muted); text-decoration: none; font-weight: 500; }
footer.site-footer .links a:hover { color: var(--rose); }
