@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/plus-jakarta-sans.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #0b1220;
  --ink-soft: #121b30;
  --magenta: #9c1f5c;
  --magenta-bright: #d92b7a;
  --navy: #0a2c57;
  --pink-light: #f57ab0;
  --wash: #f6f1f8;
  --paper: #ffffff;
  --text: #14101a;
  --muted: #675f72;
  --border: #ece4ef;
  --radius-lg: 28px;
  --radius-md: 18px;
  --gradient-brand: linear-gradient(135deg, var(--magenta) 0%, var(--navy) 100%);
  font-size: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
svg { display: block; }

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Blob backgrounds (pure CSS, no images) ---------- */
.blobs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
}
.blobs-light .blob-1 { width: 480px; height: 480px; left: -120px; top: -160px; background: radial-gradient(circle at 30% 30%, var(--magenta) 0%, transparent 70%); opacity: 0.16; }
.blobs-light .blob-2 { width: 520px; height: 520px; right: -160px; top: 40px; background: radial-gradient(circle at 60% 40%, var(--navy) 0%, transparent 70%); opacity: 0.14; }
.blobs-light .blob-3 { width: 360px; height: 360px; left: 30%; bottom: -180px; background: radial-gradient(circle at 50% 50%, var(--navy) 0%, transparent 70%); opacity: 0.12; }

.blobs-dark .blob-1 { width: 520px; height: 520px; left: -140px; top: -120px; background: radial-gradient(circle, var(--magenta) 0%, transparent 70%); opacity: 0.32; }
.blobs-dark .blob-2 { width: 460px; height: 460px; right: -140px; bottom: -160px; background: radial-gradient(circle, var(--navy) 0%, transparent 70%); opacity: 0.55; }
.blobs-dark .blob-3 { width: 300px; height: 300px; right: 15%; top: 20%; background: radial-gradient(circle, var(--magenta) 0%, transparent 70%); opacity: 0.14; }

/* ---------- Icons ---------- */
.icon { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Top bar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 18, 32, 0.85);
  backdrop-filter: blur(10px);
  padding: 14px 0;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.topbar .brand { display: flex; align-items: center; }
.topbar .brand img { height: 30px; width: auto; }
.pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.pill-btn:hover { transform: translateY(-2px); }
.pill-btn .icon { width: 18px; height: 18px; }
.pill-magenta { background: var(--magenta); color: #fff; box-shadow: 0 8px 22px -8px rgba(156, 31, 92, 0.6); }
.pill-gradient { background: var(--gradient-brand); color: #fff; box-shadow: 0 10px 26px -10px rgba(156, 31, 92, 0.55); }
.pill-outline-dark { background: transparent; color: var(--ink); border: 1.5px solid rgba(20, 16, 26, 0.25); }
.pill-outline-dark:hover { border-color: var(--ink); }
.pill-outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.35); }
.pill-outline-light:hover { border-color: #fff; }
.pill-block { width: 100%; justify-content: center; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--wash); padding: 60px 0 40px; overflow: hidden; }
.hero-photo {
  position: absolute;
  z-index: 0;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(1000px, 160%);
  max-width: none;
  opacity: 0.34;
  filter: grayscale(1) contrast(1.05);
  -webkit-mask-image: linear-gradient(to top, black 35%, transparent 92%);
  mask-image: linear-gradient(to top, black 35%, transparent 92%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; text-align: center; }
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 8px 16px 8px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 26px;
  box-shadow: 0 6px 18px -12px rgba(20,16,26,0.25);
}
.eyebrow-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gradient-brand); flex: none; }
.eyebrow-pill .icon { width: 16px; height: 16px; stroke-width: 2.4; color: var(--magenta); flex: none; }
.section-head .eyebrow-pill { margin-bottom: 0; margin-top: 18px; }
.hero h1 {
  font-size: clamp(2.3rem, 6vw, 3.4rem);
  line-height: 1.1;
  margin: 0 0 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hero h1 .accent {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead { font-size: 1.1rem; line-height: 1.65; color: var(--muted); margin: 0 auto 34px; max-width: 520px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 48px; }

.hero-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 600px;
  margin: 0 auto;
}
.hero-stats div {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 10px;
  text-align: center;
  box-shadow: 0 10px 30px -20px rgba(20,16,26,0.3);
}
.hero-stats strong { display: block; font-size: 1.4rem; font-weight: 800; color: var(--ink); }
.hero-stats span { font-size: 0.78rem; color: var(--muted); }

/* ---------- Section shells ---------- */
section { padding: 72px 0; position: relative; }
.section-dark { background: var(--ink); color: #fff; overflow: hidden; }
.section-wash { background: var(--wash); overflow: hidden; }

.section-head { position: relative; z-index: 1; text-align: center; max-width: 580px; margin: 0 auto 46px; }
.section-head .kicker {
  display: inline-block;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--magenta-bright);
}
.section-dark .section-head .kicker { color: var(--pink-light); }
.section-head h2 { font-size: clamp(1.7rem, 4vw, 2.3rem); margin: 0 0 14px; font-weight: 800; letter-spacing: -0.01em; }
.section-head h2 .subhead {
  display: block;
  font-size: 0.5em;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--muted);
  margin-top: 8px;
}
.section-dark .section-head h2 .subhead { color: rgba(255,255,255,0.55); }
.section-head p { color: var(--muted); line-height: 1.6; margin: 0; }
.section-dark .section-head p { color: rgba(255,255,255,0.68); }

/* ---------- Value cards ---------- */
.value-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
.value-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 30px 24px;
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px -28px rgba(20,16,26,0.35);
}
.value-card .icon-badge {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(156,31,92,0.12), rgba(10,44,87,0.12));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--magenta);
}
.value-card h3 { margin: 0 0 8px; font-size: 1.08rem; font-weight: 700; }
.value-card p { margin: 0; color: var(--muted); font-size: 0.93rem; line-height: 1.6; }

/* ---------- Team (dark) ---------- */
.team-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.team-card { display: flex; flex-direction: column; align-items: center; text-align: center; }
.blob-photo {
  position: relative;
  width: 220px;
  height: 220px;
  margin-bottom: 24px;
}
.blob-photo .blob-mask {
  position: absolute;
  inset: -14px;
  background: linear-gradient(135deg, var(--magenta), var(--navy));
  border-radius: 62% 38% 55% 45% / 45% 55% 45% 55%;
  opacity: 0.85;
}
.blob-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 58% 42% 52% 48% / 48% 52% 48% 52%;
}
.team-card h3 { margin: 0 0 6px; font-size: 1.2rem; font-weight: 800; }
.team-card .role { font-size: 0.85rem; color: var(--pink-light); font-weight: 600; margin-bottom: 14px; display: block; }
.team-card p.bio { color: rgba(255,255,255,0.7); font-size: 0.93rem; line-height: 1.6; margin: 0 0 18px; max-width: 320px; }
.badge-row { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: auto; padding-top: 18px; }
.badge-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(245,122,176,0.12);
  border: 1px solid rgba(245,122,176,0.4);
  color: var(--pink-light);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 600;
}
.badge-pill .icon { width: 14px; height: 14px; }

/* ---------- Form ---------- */
.form-wrap {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  box-shadow: 0 30px 70px -30px rgba(20,16,26,0.35);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 7px; color: var(--ink); }
.field input, .field textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: var(--wash);
  color: var(--text);
  font-family: inherit;
  font-size: 0.96rem;
  transition: border-color 0.15s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--magenta); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 0.8rem; color: var(--muted); line-height: 1.55; margin: 18px 0 22px; }
.consent input { margin-top: 3px; }
.consent a { color: var(--magenta); text-decoration: underline; }

.form-msg { margin-top: 14px; padding: 12px 14px; border-radius: 10px; font-size: 0.88rem; display: none; }
.form-msg.show { display: block; }
.form-msg.success { background: #ecfaf1; border: 1px solid #b6e8c8; color: #1c6b3d; }
.form-msg.error { background: #fdecec; border: 1px solid #f3b7b7; color: #a3232a; }

.divider-or { text-align: center; color: var(--muted); font-size: 0.8rem; margin: 26px 0 18px; position: relative; }
.divider-or::before, .divider-or::after { content: ""; position: absolute; top: 50%; width: 40%; height: 1px; background: var(--border); }
.divider-or::before { left: 0; }
.divider-or::after { right: 0; }

.voucher-card {
  text-align: center;
  background: var(--wash);
  border: 1.5px dashed var(--magenta);
  border-radius: var(--radius-md);
  padding: 30px 24px;
}
.voucher-check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.voucher-check .icon { width: 28px; height: 28px; stroke-width: 2.2; }
.voucher-card h4 { margin: 0 0 8px; font-size: 1.15rem; font-weight: 800; color: var(--ink); }
.voucher-card p { margin: 0; color: var(--muted); font-size: 0.9rem; line-height: 1.55; }
.voucher-card .voucher-name { color: var(--magenta); }

/* ---------- Footer ---------- */
footer { background: var(--ink); color: rgba(255,255,255,0.6); padding: 40px 0 28px; font-size: 0.82rem; }
footer .container { display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center; }
.footer-logo { height: 30px; width: auto; }
footer nav { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
footer nav a { text-decoration: none; color: rgba(255,255,255,0.72); }
footer nav a:hover { color: #fff; }
footer .fine { color: rgba(255,255,255,0.38); }

@media (max-width: 640px) {
  .field-row { grid-template-columns: 1fr; }
  .topbar .container { gap: 10px; }
  .topbar .brand img { height: 20px; }
  .topbar .pill-btn { padding: 10px 16px; font-size: 0.82rem; }
  .form-wrap { padding: 30px 22px; }
}
