/* =========================================================
   Surprise Me Social — Design System
   Brand: Shock Me Red #FE0144 · Prickly Purple #7C51FF
          Boujee Blue #2CA0FF · Beetlejuice Black #222222
          Guarded Grey #B0B0B0 · Whiplash White #FFFFFF
   Fonts: Cabin (headings) · Roboto (body)
   ========================================================= */

:root {
  --red:    #FE0144;
  --purple: #7C51FF;
  --blue:   #2CA0FF;
  --black:  #222222;
  --grey:   #B0B0B0;
  --white:  #FFFFFF;
  --ink:    #2a2730;
  --paper:  #ffffff;
  --soft:   #faf7fb;

  --grad: linear-gradient(115deg, #7C51FF 0%, #c0177a 48%, #FE0144 100%);
  --grad-soft: linear-gradient(115deg, rgba(124,81,255,.10), rgba(254,1,68,.10));

  --maxw: 1160px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 50px -22px rgba(40,10,60,.35);
  --shadow-sm: 0 8px 24px -14px rgba(40,10,60,.30);

  --head: "Cabin", system-ui, -apple-system, "Segoe UI", sans-serif;
  --body: "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--head); font-weight: 700; line-height: 1.1; color: var(--black); margin: 0 0 .5em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); letter-spacing: -.5px; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); letter-spacing: -.4px; }
h3 { font-size: 1.35rem; }
p  { margin: 0 0 1.1rem; }
a  { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }
.muted { color: #6b6675; }
.eyebrow {
  font-family: var(--head); font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; font-size: .8rem; color: var(--purple); margin: 0 0 .8rem;
}
.eyebrow.on-grad { color: rgba(255,255,255,.9); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--head); font-weight: 700; font-size: 1.02rem;
  padding: .85rem 2.2rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  text-decoration: none; line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 12px 26px -12px rgba(254,1,68,.7); }
.btn-primary:hover { background: #e10d45; }
.btn-grad { background: var(--grad); color: #fff; box-shadow: 0 12px 30px -12px rgba(124,81,255,.65); }
.btn-light { background: #fff; color: var(--black); }
.btn-light:hover { background: #fff; }
.btn-outline { background: transparent; color: var(--black); border-color: var(--black); }
.btn-outline:hover { background: var(--black); color: #fff; }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-ghost-light:hover { background: #fff; color: var(--purple); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.86); backdrop-filter: blur(10px);
  border-bottom: 1px solid #efe9f1;
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand img { width: 34px; height: auto; }
.brand span {
  font-family: var(--head); font-weight: 700; font-size: 1.15rem; color: var(--black);
  letter-spacing: -.2px;
}
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-family: var(--head); font-weight: 500; color: var(--black); font-size: 1rem;
  position: relative; padding: 4px 0;
}
.nav-links a:hover { text-decoration: none; color: var(--red); }
.nav-links a.active { color: var(--red); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 3px;
  background: var(--grad); border-radius: 3px;
}
.nav-cta { margin-left: .5rem; }
.nav-cta .btn { padding: .85rem 2.2rem; }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px;
  flex-direction: column; gap: 5px;
}
.nav-toggle span { width: 26px; height: 3px; background: var(--black); border-radius: 3px; transition: .25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background: var(--grad);
  padding: clamp(70px, 12vw, 130px) 0 clamp(80px, 12vw, 140px);
}
.hero h1 { color: #fff; }
.hero p.lead { font-size: clamp(1.1rem, 2vw, 1.4rem); color: rgba(255,255,255,.92); max-width: 620px; margin: 0 auto 2rem; }
.hero .container { position: relative; z-index: 2; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.hero-sub {
  background: var(--grad); color: #fff; padding: clamp(54px,8vw,84px) 0; text-align: center;
}
.hero-sub h1 { color: #fff; }
.hero-sub p { color: rgba(255,255,255,.92); max-width: 640px; margin: 0 auto; font-size: 1.15rem; }

/* confetti layer */
.confetti-piece {
  position: absolute; border-radius: 6px; opacity: .85; z-index: 1;
  will-change: transform; pointer-events: none;
}
@keyframes floaty {
  0%   { transform: translateY(0) rotate(0deg); }
  50%  { transform: translateY(-26px) rotate(180deg); }
  100% { transform: translateY(0) rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---------- Sections ---------- */
section { padding: clamp(56px, 9vw, 100px) 0; }
.section-soft { background: var(--soft); }
.section-head { max-width: 680px; margin: 0 auto 3rem; text-align: center; }
.section-head p { font-size: 1.1rem; color: #6b6675; margin: 0; }

/* ---------- Cards / Services ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff; border: 1px solid #f0ebf2; border-radius: var(--radius);
  padding: 2rem 1.7rem; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card h3 { margin-bottom: .5rem; }
.card p { margin: 0; color: #6b6675; font-size: .98rem; }

.svc-icon {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  margin-bottom: 1.1rem; color: #fff;
}
.svc-icon svg { width: 28px; height: 28px; }
.ic-red    { background: var(--red); }
.ic-purple { background: var(--purple); }
.ic-blue   { background: var(--blue); }
.ic-grad   { background: var(--grad); }

/* numbered detail rows */
.svc-row {
  display: grid; grid-template-columns: 90px 1fr; gap: 2rem; align-items: start;
  padding: 2.4rem 0; border-bottom: 1px solid #eee;
}
.svc-row:last-child { border-bottom: 0; }
.svc-num {
  font-family: var(--head); font-weight: 700; font-size: 3rem; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.svc-row h3 { font-size: 1.6rem; }
.svc-row ul { margin: .6rem 0 0; padding-left: 1.1rem; color: #6b6675; }
.svc-row ul li { margin-bottom: .3rem; }

/* ---------- Feature / split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.stat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; text-align: center; }
.stat .num { font-family: var(--head); font-weight: 700; font-size: 2.6rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .label { color: #6b6675; font-size: .95rem; margin-top: .2rem; }

.pill-list { list-style: none; padding: 0; margin: 1.4rem 0 0; display: flex; flex-wrap: wrap; gap: .6rem; }
.pill-list li {
  font-family: var(--head); font-weight: 600; font-size: .9rem;
  padding: .5rem 1rem; border-radius: 999px; background: var(--grad-soft); color: var(--purple);
}

/* values */
.value { padding: 1.6rem; border-radius: var(--radius); background: #fff; border: 1px solid #f0ebf2; }
.value .dot { width: 14px; height: 14px; border-radius: 50%; margin-bottom: 1rem; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--grad); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 560px; margin: 0 auto 1.8rem; font-size: 1.1rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.6rem; }
.contact-item .ci-ic { width: 46px; height: 46px; flex: 0 0 46px; border-radius: 12px; display: grid; place-items: center; color: #fff; background: var(--grad); }
.contact-item .ci-ic svg { width: 22px; height: 22px; }
.contact-item h4 { margin: 0 0 .2rem; font-family: var(--head); font-size: 1.05rem; }
.contact-item a, .contact-item span { color: #6b6675; }

.form-card { background: #fff; border: 1px solid #f0ebf2; border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-family: var(--head); font-weight: 600; font-size: .92rem; margin-bottom: .4rem; color: var(--black); }
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem 1rem; border: 1.5px solid #e6dfe9; border-radius: 12px;
  font-family: var(--body); font-size: 1rem; color: var(--ink); background: #fff; transition: border .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--purple); box-shadow: 0 0 0 3px rgba(124,81,255,.15);
}
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: .85rem; color: #8a8594; margin-top: .8rem; }
.form-msg { margin-top: 1rem; padding: .9rem 1rem; border-radius: 12px; font-size: .95rem; display: none; }
.form-msg.show { display: block; }
.form-msg.ok { background: rgba(44,160,255,.12); color: #1565a8; }

/* ---------- Socials ---------- */
.socials { display: flex; gap: .8rem; margin-top: 1.4rem; }
.socials a {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: #fff; border: 1px solid #ece5ef; color: var(--black); transition: .2s;
}
.socials a:hover { background: var(--grad); color: #fff; transform: translateY(-3px); border-color: transparent; }
.socials svg { width: 20px; height: 20px; }
.socials.on-dark a { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.25); color: #fff; }
.socials.on-dark a:hover { background: #fff; color: var(--purple); }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); color: #cfc9d6; padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.site-footer a { color: #cfc9d6; }
.site-footer a:hover { color: #fff; text-decoration: none; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .6rem; }
.footer-brand { display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem; }
.footer-brand img { width: 36px; }
.footer-brand span { font-family: var(--head); font-weight: 700; font-size: 1.2rem; color: #fff; }
.footer-bottom { border-top: 1px solid #3a3a3a; margin-top: 40px; padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .85rem; color: #8f8a98; }

/* ---------- Reveal animation (progressive enhancement) ---------- */
/* Hidden state only applies when JS is active, so content is always
   visible if JavaScript fails or is disabled. */
.reveal { transition: opacity .6s ease, transform .6s ease; }
.js .reveal { opacity: 0; transform: translateY(24px); }
.js .reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 74px; left: 0; right: 0; background: #fff;
    flex-direction: column; align-items: flex-start; gap: 0; padding: 0 24px;
    max-height: 0; overflow: hidden; border-bottom: 1px solid transparent;
    transition: max-height .3s ease; box-shadow: var(--shadow-sm);
  }
  .nav-links.open { max-height: 460px; padding: 12px 24px 22px; border-bottom: 1px solid #efe9f1; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 0; width: 100%; }
  .nav-links a.active::after { display: none; }
  .nav-cta { margin: 8px 0 0; }
  .nav-cta .btn { width: auto; align-self: flex-start; padding: .85rem 2.2rem; }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr; gap: 2rem; }
  .svc-row { grid-template-columns: 1fr; gap: .6rem; padding: 1.8rem 0; }
  .svc-num { font-size: 2.4rem; }
  .footer-grid { grid-template-columns: 1fr; }
}
