:root {
  --cream: #f4eedf;
  --cream-2: #fffaf0;
  --ink: #15130f;
  --muted: #70695f;
  --line: #15130f;
  --lime: #d9ff3f;
  --lime-soft: #ecff91;
  --orange: #ff7a45;
  --blue: #7ab6ff;
  --pink: #ff83c3;
  --shadow: 8px 8px 0 var(--ink);
  --radius-lg: 34px;
  --radius-md: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Geist', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 12%, rgba(217, 255, 63, .26), transparent 28%),
    radial-gradient(circle at 92% 8%, rgba(255, 122, 69, .18), transparent 28%),
    radial-gradient(circle at 60% 96%, rgba(122, 182, 255, .18), transparent 32%);
  z-index: -2;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .055;
  z-index: 100;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.mono { font-family: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, monospace; }
.page-shell { width: min(1440px, 100%); margin: 0 auto; padding: 24px; }
.section-pad { padding: 54px 0; }

a { color: inherit; }

.nav {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 14px 13px 22px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: rgba(255, 250, 240, .82);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 0 rgba(21, 19, 15, .09);
}

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 900; font-size: 20px; letter-spacing: -.6px; }
.brand-mark { display: block; width: 42px; height: 42px; flex: 0 0 42px; }
.nav-links { display: flex; gap: 28px; align-items: center; font-weight: 700; font-size: 15px; }
.nav-links a { text-decoration: none; }
.nav-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -.2px;
}
.nav-cta, .button.primary { background: var(--ink); color: var(--cream-2); border: 2px solid var(--ink); }
.button.secondary { background: var(--cream-2); color: var(--ink); border: 2px solid var(--ink); }

.hero { display: grid; grid-template-columns: 1.06fr .94fr; gap: 34px; align-items: stretch; min-height: 720px; }
.hero-copy { display: flex; flex-direction: column; justify-content: center; }
.eyebrow { margin: 0 0 18px; text-transform: uppercase; font-weight: 900; font-size: 13px; letter-spacing: .18em; }
.hero h1 { margin: 0; font-size: clamp(68px, 8.2vw, 122px); line-height: .84; letter-spacing: clamp(-7px, -.55vw, -3px); font-weight: 900; max-width: 900px; }
.hero h1 span { display: inline-block; padding: 0 .11em .05em; border: 2px solid var(--ink); border-radius: 24px; background: var(--lime); transform: rotate(-1deg); box-shadow: 5px 5px 0 var(--ink); }
.hero-subcopy { margin: 30px 0 0; max-width: 700px; color: var(--muted); font-size: 22px; line-height: 1.36; font-weight: 500; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.hero-visual {
  position: relative;
  min-height: 690px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--cream-2);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  pointer-events: none;
}
.lime-orb { position: absolute; width: 460px; height: 460px; border-radius: 50%; right: -120px; top: 86px; background: var(--lime); }
.lime-orb::after { content: ''; position: absolute; inset: 58px; border: 2px solid var(--ink); border-radius: 50%; background: rgba(255,255,255,.24); }
.floating-card {
  position: absolute;
  z-index: 2;
  background: var(--cream-2);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.card-label { display: inline-flex; padding: 7px 12px; border: 2px solid var(--ink); border-radius: 999px; background: var(--lime); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.creator-card { top: 56px; left: 36px; width: min(370px, calc(100% - 72px)); transform: rotate(-2.6deg); }
.creator-card h2 { margin: 18px 0 18px; font-size: 34px; line-height: .98; letter-spacing: -1.6px; }
.creator-card p, .campaign-card p { color: var(--muted); font-weight: 600; line-height: 1.38; }
.avatar-row { display: flex; margin: 18px 0; }
.avatar { width: 58px; height: 58px; margin-right: -11px; border: 2px solid var(--ink); border-radius: 50%; background: linear-gradient(135deg, var(--a), var(--b)); position: relative; overflow: hidden; }
.avatar::after { content: ''; position: absolute; inset: 15%; border-radius: 45%; background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.7), transparent 28%), linear-gradient(135deg, rgba(255,255,255,.14), rgba(0,0,0,.16)); transform: rotate(-18deg); }
.a1 { --a: var(--orange); --b: var(--lime); }
.a2 { --a: var(--blue); --b: var(--pink); }
.a3 { --a: var(--lime); --b: var(--blue); }
.campaign-card { right: 36px; bottom: 54px; width: min(390px, calc(100% - 72px)); transform: rotate(2.2deg); }
.campaign-card strong { display: block; margin: 18px 0 10px; font-size: 52px; line-height: .9; letter-spacing: -2.8px; }
.small-note { position: absolute; left: 36px; bottom: 38px; max-width: 270px; color: rgba(255,255,255,.68); font-size: 12px; line-height: 1.6; text-transform: uppercase; letter-spacing: .12em; }

.marquee { border: 2px solid var(--ink); border-radius: 28px; background: var(--ink); color: var(--cream); overflow: hidden; }
.marquee-track { display: flex; gap: 18px; align-items: center; width: max-content; padding: 18px 22px; font-size: clamp(20px, 3vw, 35px); line-height: 1; font-weight: 900; letter-spacing: -1px; animation: slide 28s linear infinite; }
.marquee-track b { color: var(--lime); }
@keyframes slide { to { transform: translateX(-50%); } }

.section-heading { display: grid; grid-template-columns: .33fr 1fr; gap: 24px; align-items: start; margin-bottom: 24px; }
.section-heading h2, .process h2, .why h2, .contact h2 { margin: 0; font-size: clamp(42px, 5vw, 76px); line-height: .9; letter-spacing: -3.5px; font-weight: 900; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { min-height: 300px; padding: 28px; border: 2px solid var(--ink); border-radius: var(--radius-md); background: var(--cream-2); box-shadow: 5px 5px 0 var(--ink); }
.service-card.highlight { background: var(--lime); }
.number { display: inline-flex; align-items: center; justify-content: center; width: 50px; height: 50px; border: 2px solid var(--ink); border-radius: 50%; background: var(--ink); color: var(--cream); font-weight: 900; }
.service-card h3 { margin: 28px 0 14px; font-size: 33px; line-height: .96; letter-spacing: -1.5px; }
.service-card p { margin: 0; color: var(--muted); font-size: 18px; line-height: 1.42; font-weight: 550; }
.service-card.highlight p { color: #343126; }

.process-panel { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; padding: 32px; border: 2px solid var(--ink); border-radius: var(--radius-lg); background: var(--orange); box-shadow: var(--shadow); }
.large-text { font-size: 21px; line-height: 1.38; font-weight: 600; max-width: 650px; }
.steps { display: grid; gap: 14px; }
.steps article { padding: 24px; border: 2px solid var(--ink); border-radius: 24px; background: var(--cream-2); }
.step-dot { display: inline-flex; padding: 7px 11px; border-radius: 999px; background: var(--lime); border: 2px solid var(--ink); font-weight: 900; }
.steps h3 { margin: 16px 0 8px; font-size: 28px; letter-spacing: -1px; }
.steps p { margin: 0; color: var(--muted); font-weight: 550; line-height: 1.42; }

.why { display: grid; grid-template-columns: 1.25fr .75fr; gap: 18px; }
.why-card { border: 2px solid var(--ink); border-radius: var(--radius-md); background: var(--cream-2); padding: 28px; box-shadow: 5px 5px 0 var(--ink); }
.why-card.big { grid-row: span 3; background: var(--ink); color: var(--cream-2); min-height: 560px; display: flex; flex-direction: column; justify-content: space-between; }
.why-card.big p:not(.eyebrow) { color: rgba(255,250,240,.72); max-width: 740px; font-size: 21px; line-height: 1.38; }
.stat-card strong { display: block; font-size: 34px; line-height: .96; letter-spacing: -1.4px; }
.stat-card p { margin: 14px 0 0; color: var(--muted); line-height: 1.4; font-weight: 550; }
.stat-card.dark { background: var(--ink); color: var(--cream-2); }
.stat-card.dark p { color: rgba(255,250,240,.72); }
.stat-card.lime { background: var(--lime); }
.stat-card.lime p { color: #343126; }

.contact { padding-bottom: 28px; }
.contact-inner {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 28px;
  align-items: stretch;
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--lime);
  padding: clamp(24px, 4vw, 42px);
  box-shadow: var(--shadow);
}
.contact-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(10px, 3vw, 32px); }
.contact-copy p:not(.eyebrow):not(.contact-note) { max-width: 720px; margin: 22px 0 28px; color: #373326; font-size: 21px; line-height: 1.4; font-weight: 600; }
.email-fallback { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 4px; }
.copy-email { cursor: pointer; font-family: inherit; font-size: 16px; }
.copy-email.copied { background: var(--cream-2); color: var(--ink); }
.plain-email { display: inline-flex; align-items: center; min-height: 48px; padding: 0 18px; border: 2px solid var(--ink); border-radius: 999px; background: rgba(255,250,240,.55); text-decoration: none; font-size: 14px; font-weight: 900; }
.contact-note { margin: 16px 0 0; color: #514b38; font-size: 15px; line-height: 1.4; font-weight: 700; }
.contact .button { box-shadow: 5px 5px 0 rgba(0,0,0,.18); }
.lead-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; padding: 20px; border: 2px solid var(--ink); border-radius: 28px; background: var(--cream-2); box-shadow: 6px 6px 0 var(--ink); }
.lead-form label { display: grid; gap: 8px; text-align: left; font-weight: 900; color: var(--ink); }
.lead-form label.full { grid-column: 1 / -1; }
.lead-form span { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.lead-form input,
.lead-form textarea { width: 100%; border: 2px solid var(--ink); border-radius: 18px; background: #fffaf0; color: var(--ink); padding: 15px 16px; font: inherit; font-weight: 650; outline: none; }
.lead-form textarea { resize: vertical; min-height: 150px; }
.lead-form input:focus,
.lead-form textarea:focus { box-shadow: 0 0 0 4px rgba(217,255,63,.55); }
.form-submit { grid-column: 1 / -1; width: 100%; cursor: pointer; font-family: inherit; font-size: 17px; }
.honeypot { position: absolute; left: -9999px; opacity: 0; }
.footer { display: grid; grid-template-columns: 1.15fr .6fr .8fr; gap: 24px; align-items: end; padding: 28px 4px 8px; color: var(--ink); }
.footer p { max-width: 470px; margin: 16px 0 0; color: var(--muted); font-size: 16px; line-height: 1.45; font-weight: 650; }
.footer-brand { width: fit-content; }
.footer-links,
.footer-contact { display: grid; gap: 10px; font-weight: 850; }
.footer-links a { text-decoration: none; }
.footer-contact { color: var(--muted); text-align: right; }
.footer-contact .mono { color: var(--ink); font-size: 13px; }

@media (max-width: 980px) {
  .page-shell { padding: 14px; }
  .nav { top: 10px; border-radius: 26px; align-items: flex-start; }
  .nav-links { display: none; }
  .brand { font-size: 17px; }
  .hero, .section-heading, .service-grid, .process-panel, .why, .contact-inner, .footer { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero h1 { font-size: clamp(58px, 18vw, 86px); letter-spacing: -4px; }
  .hero-subcopy { font-size: 19px; }
  .hero-visual { min-height: 620px; }
  .small-note { display: none; }
  .service-card { min-height: auto; }
  .footer-contact { text-align: left; }
  .why-card.big { min-height: 420px; }
}

@media (max-width: 600px) {
  .section-pad { padding: 38px 0; }
  .nav-cta { display: none; }
  .hero-actions, .email-fallback { flex-direction: column; }
  .button { width: 100%; }
  .hero h1 span { border-radius: 16px; box-shadow: 3px 3px 0 var(--ink); }
  .hero-visual { min-height: 560px; border-radius: 24px; box-shadow: 5px 5px 0 var(--ink); }
  .floating-card { left: 18px !important; right: 18px !important; width: auto; }
  .creator-card { top: 32px; }
  .campaign-card { bottom: 34px; }
  .campaign-card strong { font-size: 40px; }
  .lime-orb { right: -220px; }
  .section-heading h2, .process h2, .why h2, .contact h2 { letter-spacing: -2px; }
  .process-panel, .contact-inner { padding: 24px; border-radius: 24px; }
  .contact-copy, .lead-form { padding: 18px; }
  .lead-form { grid-template-columns: 1fr; }
  .plain-email { width: 100%; justify-content: center; font-size: 12px; }
}
