:root{
  /* light + playful palette */
  --bg: #f6fbff;
  --card: rgba(255,255,255,.78);
  --card2: rgba(255,255,255,.92);
  --text: #15324b;
  --muted: #4b6a84;

  --primary: #2d7ff9;
  --accent: #ff6fae;
  --accent2: #ffb84d;
  --good: #2ecf8f;

  --border: rgba(21,50,75,.12);
  --shadow: 0 10px 30px rgba(21,50,75,.10);
  --radius: 18px;
}

*{box-sizing:border-box}

html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 600px at 10% 0%, rgba(45,127,249,.18) 0%, rgba(45,127,249,0) 60%),
    radial-gradient(800px 520px at 90% 10%, rgba(255,111,174,.16) 0%, rgba(255,111,174,0) 65%),
    radial-gradient(700px 520px at 60% 90%, rgba(255,184,77,.16) 0%, rgba(255,184,77,0) 60%),
    var(--bg);
  overflow-x:hidden;
}

/* background blobs */
.bg-blob{
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  filter: blur(40px);
  opacity: .65;
  z-index: -1;
  pointer-events:none;
}
.bg-blob-1{
  left: -180px;
  top: -220px;
  background: radial-gradient(circle at 30% 30%, rgba(45,127,249,.55), rgba(45,127,249,0) 70%);
}
.bg-blob-2{
  right: -200px;
  bottom: -240px;
  background: radial-gradient(circle at 30% 30%, rgba(255,111,174,.55), rgba(255,111,174,0) 70%);
}

a{
  color: var(--primary);
  text-decoration: none;
}
a:hover{ text-decoration: underline; }

.container{
  max-width: 980px;
  margin: 0 auto;
  padding: 1rem;
}

/* header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246,251,255,.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 1rem;
  padding: .6rem 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: .6rem;
  font-weight: 900;
  letter-spacing: .2px;
  color: var(--text);
  text-decoration:none;
}
.brand-badge{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, rgba(45,127,249,.18), rgba(255,111,174,.18));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.nav{
  display:flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.nav a{
  color: var(--text);
  padding: .45rem .7rem;
  border-radius: 999px;
  border: 1px solid transparent;
}
.nav a:hover{
  background: rgba(255,255,255,.65);
  border-color: var(--border);
  text-decoration:none;
}

/* cards + page content */
.card{
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.1rem 1.1rem;
}

.hero{
  margin-top: 1rem;
  padding: 1.25rem;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(45,127,249,.10), rgba(255,111,174,.10)),
    rgba(255,255,255,.75);
  box-shadow: var(--shadow);
}

.hero h1{
  margin: 0 0 .35rem 0;
  font-size: 2rem;
}
.hero p{
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.pills{
  display:flex;
  flex-wrap:wrap;
  gap: .5rem;
  margin-top: .9rem;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  padding: .45rem .75rem;
  border-radius: 999px;
  background: rgba(255,255,255,.75);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: .95rem;
}

.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
.col-6{ grid-column: span 6; }
.col-12{ grid-column: span 12; }

@media (max-width: 820px){
  .col-6{ grid-column: span 12; }
  .hero h1{ font-size: 1.7rem; }
}

/* footer */
.site-footer{
  margin-top: 2rem;
  padding: 1.2rem 0 2.2rem;
  color: var(--muted);
}
.footer-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 1rem;
  flex-wrap:wrap;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.muted{ color: var(--muted); font-size: .92rem; }

/* add near end of site.css */
.policy-body h2{ margin-top: 1.1rem; }
.policy-body p{ line-height: 1.65; }
.policy-body ul{ margin: .6rem 0 1rem; padding-left: 1.2rem; }
.policy-body li{ margin: .35rem 0; }

/* ------------------------------
   Contact Form
-------------------------------- */

.contact-form{
  display:flex;
  flex-direction:column;
  gap: 1rem;
  margin-top: 1rem;
}

.contact-form label{
  display:flex;
  flex-direction:column;
  gap:.35rem;
  font-weight:600;
  font-size:.95rem;
  color: var(--text);
}

.contact-form input,
.contact-form textarea{
  padding:.7rem .9rem;
  border-radius:14px;
  border:1px solid var(--border);
  font-size:.95rem;
  font-family:inherit;
  background:white;
  transition: all .2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus{
  outline:none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(45,127,249,.15);
}

.contact-form textarea{
  resize:vertical;
  min-height:120px;
}

.btn-primary{
  margin-top:.5rem;
  padding:.75rem 1.2rem;
  border-radius:999px;
  border:none;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color:white;
  font-weight:700;
  font-size:.95rem;
  cursor:pointer;
  transition: all .2s ease;
  align-self:flex-start;
}

.btn-primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(45,127,249,.25);
}

/* Success & error messages */

.success-box{
  background: rgba(46,207,143,.15);
  border: 1px solid rgba(46,207,143,.35);
  padding:.8rem 1rem;
  border-radius:14px;
  margin-bottom:1rem;
  font-weight:600;
}

.error-box{
  background: rgba(255,111,174,.15);
  border: 1px solid rgba(255,111,174,.35);
  padding:.8rem 1rem;
  border-radius:14px;
  margin-bottom:1rem;
  font-weight:600;
}