/* The Growth Project — agency marketing site styles. data-brand="growth". */
@import url('tokens.css');

* { box-sizing: border-box; }
html, body { margin: 0; scroll-behavior: smooth; }
body { font-family: var(--font-brand); background: var(--paper); color: var(--fg-1); -webkit-font-smoothing: antialiased; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 32px; }

/* ---- Header ---- */
.hdr { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,.82); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.hdr-in { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-size: 14.5px; font-weight: 600; color: var(--fg-2); text-decoration: none; transition: color var(--dur) var(--ease); }
.nav a:hover { color: var(--fg-1); }

/* ---- Buttons ---- */
.btn { font-family: var(--font-brand); font-weight: 600; font-size: 14.5px; border-radius: 11px; padding: 11px 19px; border: 1px solid transparent; cursor: pointer; transition: all var(--dur) var(--ease); display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; text-decoration: none; }
.btn svg { width: 17px; height: 17px; stroke-width: 2; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-accent); }
.btn-primary:hover { background: var(--accent-strong); }
.btn-ghost { background: #fff; color: var(--fg-1); border-color: var(--line-strong); }
.btn-ghost:hover { background: var(--surface); border-color: var(--accent); color: var(--accent-ink); }
.btn-lg { padding: 14px 24px; font-size: 16px; border-radius: 13px; }

/* ---- Hero ---- */
.hero { padding: 86px 0 70px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-ink); background: var(--accent-tint); padding: 7px 14px; border-radius: 999px; white-space: nowrap; }
.eyebrow svg { width: 14px; height: 14px; }
.hero h1 { font-size: 66px; font-weight: 800; letter-spacing: -.03em; line-height: 1.02; margin: 22px 0 0; max-width: 720px; text-wrap: balance; }
.hero p { font-size: 19px; line-height: 1.55; color: var(--fg-2); max-width: 540px; margin: 22px 0 0; }
.hero-cta { display: flex; gap: 12px; margin-top: 32px; }
.hero .dot-accent { color: var(--accent); }

/* ---- Proof bar ---- */
.proof { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.proof-in { display: flex; align-items: center; justify-content: space-between; padding: 26px 0; gap: 30px; }
.proof .lbl { font-size: 12.5px; font-weight: 600; color: var(--fg-3); white-space: nowrap; }
.proof .logos { display: flex; gap: 40px; flex: 1; justify-content: flex-end; flex-wrap: wrap; }
.proof .logos span { font-size: 19px; font-weight: 800; letter-spacing: -.02em; color: var(--neutral-400); }

/* ---- Section ---- */
.section { padding: 84px 0; }
.section.alt { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sec-head { max-width: 620px; margin-bottom: 44px; }
.sec-head h2 { font-size: 42px; font-weight: 800; letter-spacing: -.025em; line-height: 1.08; margin: 14px 0 0; }
.sec-head p { font-size: 17.5px; line-height: 1.55; color: var(--fg-2); margin: 14px 0 0; }

/* ---- Service cards ---- */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.svc { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 26px; box-shadow: var(--shadow-sm); transition: all var(--dur) var(--ease); cursor: default; display: flex; flex-direction: column; gap: 13px; }
.svc:hover { box-shadow: var(--shadow-md); border-color: var(--line-strong); transform: translateY(-3px); }
.svc .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-tint); color: var(--accent-ink); display: flex; align-items: center; justify-content: center; }
.svc .ic svg { width: 22px; height: 22px; }
.svc h3 { font-size: 19px; font-weight: 700; margin: 4px 0 0; }
.svc p { font-size: 14.5px; line-height: 1.55; color: var(--fg-2); margin: 0; }

/* ---- Results / stats ---- */
.results { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px; }
.stat .big { font-size: 46px; font-weight: 800; letter-spacing: -.03em; color: var(--accent-ink); line-height: 1; }
.stat .cap { font-size: 13.5px; color: var(--fg-2); margin-top: 8px; font-weight: 500; line-height: 1.4; }
.quote { font-size: 23px; line-height: 1.4; font-weight: 600; letter-spacing: -.01em; color: var(--fg-1); }
.quote-by { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.quote-by .av { width: 44px; height: 44px; border-radius: 999px; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; }

/* ---- Process ---- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; counter-reset: s; }
.step { display: flex; flex-direction: column; gap: 10px; }
.step .num { width: 38px; height: 38px; border-radius: 999px; border: 1.5px solid var(--accent); color: var(--accent-ink); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; }
.step h4 { font-size: 16.5px; font-weight: 700; margin: 4px 0 0; }
.step p { font-size: 14px; line-height: 1.5; color: var(--fg-2); margin: 0; }

/* ---- CTA band ---- */
.cta { background: var(--ink); color: #fff; border-radius: 26px; padding: 64px 56px; text-align: center; position: relative; overflow: hidden; }
.cta h2 { font-size: 46px; font-weight: 800; letter-spacing: -.03em; margin: 0; line-height: 1.05; }
.cta p { font-size: 18px; color: rgba(255,255,255,.75); margin: 16px auto 0; max-width: 480px; }
.cta .row { display: flex; gap: 12px; justify-content: center; margin-top: 30px; }
.cta .blob { position: absolute; border-radius: 999px; background: rgba(47,143,107,.28); filter: blur(8px); }

/* ---- Footer ---- */
.ftr { padding: 56px 0 40px; }
.ftr-in { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.ftr-cols { display: flex; gap: 64px; }
.ftr-col { display: flex; flex-direction: column; gap: 10px; }
.ftr-col .h { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--fg-3); margin-bottom: 4px; }
.ftr-col a { font-size: 14px; color: var(--fg-2); text-decoration: none; }
.ftr-col a:hover { color: var(--fg-1); }
.ftr-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--line); margin-top: 40px; padding-top: 24px; font-size: 13px; color: var(--fg-3); }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
