/* ==========================================================================
   LeadPocket — faithful rebuild of the original Squarespace site
   ========================================================================== */

:root {
  --dg: #3d4c48;          /* dark green — hero, footer, primary buttons, headings */
  --dg-deep: #364440;
  --sage: #a5c8bf;        /* muted green — logo wall, accents, highlight scribbles */
  --sage-soft: #c6ded7;
  --cream: #fbefde;       /* section backgrounds / highlight boxes */
  --cream-pill: #f7ecdb;
  --cream-warm: #faeede;
  --ink: #1c1d1b;         /* body text on light */
  --ink-soft: #4a4d49;
  --black: #0b0c0b;
  --white: #ffffff;
  --radius: 16px;
  --maxw: 1180px;
  --ff-display: "Poppins", system-ui, sans-serif;
  --ff-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 700; line-height: 1.12; color: var(--dg); margin: 0 0 .5em; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-block;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: transform .12s ease, opacity .12s ease, background .15s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); opacity: .94; }
.btn-dg     { background: var(--dg);    color: #fff; }
.btn-sage   { background: var(--sage);  color: var(--dg); }
.btn-black  { background: var(--black); color: #fff; }
.btn-lg     { padding: 18px 40px; font-size: 1.05rem; }

/* ---- Header / nav ------------------------------------------------------- */
.site-header {
  padding: 26px 0 10px;
  background: #fff;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-logo { height: 38px; width: auto; display: block; }
.site-nav { display: flex; align-items: center; gap: 34px; }
.site-nav a.link { font-family: var(--ff-body); font-weight: 500; color: var(--dg); text-decoration: none; font-size: 1.05rem; }
.site-nav a.link:hover { text-decoration: underline; }
.site-nav .btn { letter-spacing: .04em; }

/* ---- Generic section spacing ------------------------------------------- */
section { position: relative; }
.band { padding: 88px 0; }
.band--cream { background: var(--cream); }
.band--sage  { background: var(--sage); }
.band--white { background: #fff; }
.center { text-align: center; }

/* ---- Hand-drawn highlight scribbles ------------------------------------ */
.hl { position: relative; display: inline-block; white-space: nowrap; }
.hl > svg {
  position: absolute; left: -6%; top: -14%;
  width: 112%; height: 128%;
  pointer-events: none; overflow: visible;
}
.hl.hl-underline > svg { top: auto; bottom: -22%; height: 60%; }
.hl-fill { background: var(--sage-soft); padding: 2px 8px; border-radius: 3px; }
/* hand-drawn scribble annotations removed by request */
.hl > svg { display: none; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { background: var(--dg); border-radius: var(--radius); color: #fff; overflow: hidden; }
.hero-inner {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center;
  padding: 62px 60px;
}
.hero-inner > div { min-width: 0; }
.hero h1 { color: #fff; font-size: clamp(2.6rem, 5.5vw, 4.3rem); font-weight: 700; margin-bottom: .35em; }
.hero p { color: #eef1ef; font-size: 1.02rem; margin: 0 0 18px; max-width: 34em; }
.hero p strong { color: #fff; font-weight: 700; }
.hero .btn { margin-top: 10px; }
.home-shell { padding: 34px 0 0; }

/* iPhone email mockup */
.phone {
  width: min(300px, 100%); max-width: 100%; margin: 0 auto;
  background: #0c0d0f; border-radius: 42px; padding: 12px;
  box-shadow: 0 22px 50px rgba(0,0,0,.35);
  border: 2px solid #23262a;
}
.phone-screen { background: #111214; border-radius: 32px; overflow: hidden; color: #e9eaec; font-family: var(--ff-body); }
.phone-notch { height: 26px; position: relative; }
.phone-notch::before { content:""; position:absolute; left:50%; top:8px; transform:translateX(-50%); width:88px; height:22px; background:#000; border-radius:14px; }
.phone-status { display:flex; justify-content:space-between; align-items:center; padding: 2px 20px 6px; font-size:.72rem; color:#e9eaec; font-weight:600; }
.phone-status .sig { letter-spacing:1px; }
.phone-toolbar { display:flex; justify-content:space-between; align-items:center; gap:10px; padding: 8px 16px; color:#c7c9cc; font-size:1rem; border-bottom:1px solid #212327; }
.phone-toolbar span { opacity:.85; }
.mail-head { display:flex; align-items:flex-start; gap:10px; padding: 14px 16px 6px; }
.mail-avatar { width:34px; height:34px; border-radius:50%; background:#4b9d5f; color:#fff; display:flex; align-items:center; justify-content:center; font-weight:700; font-size:.95rem; flex:0 0 auto; }
.mail-from { flex:1; }
.mail-from .n { font-weight:600; font-size:.9rem; }
.mail-from .d { color:#8b8e93; font-size:.74rem; }
.mail-from .to { color:#8b8e93; font-size:.74rem; margin-top:2px; }
.mail-reply { color:#8b8e93; font-size:1.05rem; }
.mail-body { padding: 6px 18px 22px; font-size:.86rem; line-height:1.7; color:#dcdee1; }
.mail-body p { margin: 0 0 12px; }

/* ==========================================================================
   "keep reading" stat card + chart
   ========================================================================== */
.reading-wrap { padding: 40px 0 20px; }
.reading-box {
  background: var(--cream); border-radius: 10px;
  max-width: 560px; padding: 44px 46px;
  position: relative; z-index: 2;
}
.reading-box h2 { color: #17181a; font-size: clamp(1.7rem, 3.4vw, 2.35rem); margin: 0; }
.stat-img {
  display: block; width: 100%; max-width: 900px;
  margin: -30px auto 0; position: relative; z-index: 3;
}
.stat-card {
  background: #fff; border-radius: 12px; box-shadow: 0 16px 40px rgba(30,50,45,.12);
  border: 1px solid #eef0f1;
  max-width: 720px; margin: -34px 0 0 auto; position: relative; z-index: 3;
  padding: 26px 30px 22px;
}
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 18px; }
.stat { display: flex; align-items: center; gap: 10px; }
.stat .ic { font-size: 1.35rem; }
.stat .num { font-family: var(--ff-display); font-weight: 700; font-size: 1.3rem; color: #16130f; line-height: 1; }
.stat .lbl { font-size: .82rem; color: #6a6d70; }
.stat .num .money { color: #17a05a; }
.chart-legend { display:flex; flex-wrap:wrap; gap: 14px; justify-content:center; font-size:.72rem; color:#6a6d70; margin-bottom: 8px; }
.chart-legend i { display:inline-block; width:9px; height:9px; border-radius:50%; margin-right:5px; vertical-align:middle; }
.chart { width: 100%; height: 170px; }

/* ==========================================================================
   Specialists (4 columns)
   ========================================================================== */
.section-head { max-width: 900px; margin: 0 auto 54px; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3rem); }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; margin: 0 auto; max-width: 60em; }
.cols4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; }
.feature { text-align: center; }
.feature .emoji { font-size: 2.6rem; line-height: 1; margin-bottom: 20px; }
.feature h3 { color: #111; font-size: 1.15rem; margin-bottom: 14px; }
.feature p { color: var(--ink-soft); font-size: .95rem; margin: 0; }

/* ==========================================================================
   Logo wall
   ========================================================================== */
.logowall { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 38px 58px; max-width: 940px; margin: 0 auto; }
.logowall img {
  max-height: 40px; max-width: 132px; width: auto; height: auto;
  object-fit: contain; opacity: .9; transition: opacity .2s ease;
}
.logowall img:hover { opacity: 1; }

/* ==========================================================================
   Simple pricing block (home) + pricing page
   ========================================================================== */
.pricing-block { text-align: center; max-width: 820px; margin: 0 auto; }
.pricing-block h2 { font-size: clamp(2rem, 4.6vw, 3.1rem); line-height: 1.2; margin-bottom: .6em; }
.pricing-lines { font-size: 1.12rem; color: var(--ink); }
.pricing-lines p { margin: 0 0 18px; }
.pricing-block .btn { margin-top: 20px; }

.price-hero { text-align: center; max-width: 860px; margin: 0 auto; padding: 40px 0 10px; }
.price-hero h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); margin-bottom: .5em; }
.price-pill {
  display: inline-block; background: var(--cream-pill); color: var(--dg);
  font-family: var(--ff-display); font-weight: 700; font-size: clamp(1.3rem, 3vw, 2rem);
  padding: 20px 44px; border-radius: 40px 40px 40px 8px; margin: 6px 0;
}
.price-hero .and { font-size: 1.1rem; color: var(--dg); margin: 14px 0; }
.price-hero .thats { font-size: 1.15rem; color: var(--dg); font-weight: 600; margin: 8px 0 26px; }

/* ==========================================================================
   Testimonial
   ========================================================================== */
.testimonial { text-align: center; }
.testimonial .pocket-img { width: 84px; height: auto; margin: 0 auto 40px; }
.testimonial .quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 1040px; margin: 0 auto; }
.testimonial blockquote {
  margin: 0; padding: 0; text-align: left;
  font-size: 1.08rem; color: #1b1c1a; line-height: 1.6; font-weight: 400;
}
.testimonial blockquote.single {
  max-width: 860px; margin: 0 auto; text-align: center;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem); line-height: 1.55;
}
.testimonial .cite { display: block; margin-top: 18px; font-size: .98rem; color: #2a2b29; font-weight: 600; }
@media (max-width: 760px) {
  .testimonial .quotes { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .testimonial blockquote { text-align: center; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--dg); color: #dfe4e1; padding: 80px 0 90px; }
.site-footer.angled { padding-top: 150px; clip-path: polygon(0 26%, 33% 0, 100% 20%, 100% 100%, 0 100%); margin-top: -40px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 40px; }
.footer-brand { font-family: var(--ff-display); font-weight: 700; font-size: 1.4rem; color: #fff; display: block; margin-bottom: 20px; }
.site-footer p { margin: 0 0 8px; color: #cdd3d0; font-size: .98rem; }
.site-footer .copy { margin-top: 20px; color: #aab2ae; font-size: .9rem; }
.site-footer h4 { color: #fff; font-size: 1.02rem; font-weight: 700; margin: 4px 0 18px; }
.site-footer .fcol a { display: block; color: #cdd3d0; text-decoration: underline; text-underline-offset: 3px; margin-bottom: 12px; font-size: .98rem; }
.site-footer .fcol a:hover { color: #fff; }

/* ==========================================================================
   Case studies
   ========================================================================== */
.cases-title { text-align: center; font-size: clamp(2.1rem, 4.6vw, 3.1rem); margin: 20px auto 56px; max-width: 820px; }
.cases { display: grid; grid-template-columns: repeat(2, 1fr); gap: 34px; align-items: start; }
.case {
  background: var(--cream); border-radius: 4px; padding: 40px 40px 44px;
}
.case h3 { color: #111; font-size: 1.55rem; margin-bottom: 22px; line-height: 1.18; }
.case p { margin: 0 0 16px; color: #1f201e; font-size: .98rem; line-height: 1.55; }
.case p strong { color: #111; }

/* ==========================================================================
   Work-with-us / forms
   ========================================================================== */
.work-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: start; padding: 20px 0 10px; }
.work-intro h1 { font-size: clamp(2.4rem, 5vw, 3.4rem); margin-bottom: .6em; }
.work-intro p { color: var(--ink); font-size: 1.06rem; margin: 0 0 18px; }
.work-intro p strong { font-weight: 700; }
.tf-embed { min-height: 620px; }
.tf-embed [data-tf-live] { min-height: 620px; }

/* ==========================================================================
   Cold email setup
   ========================================================================== */
.ces-hero { background: var(--cream); border-radius: 6px; padding: 64px 20px; text-align: center; }
.ces-hero h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); margin: 0; }
.ces-dark { background: var(--dg); color: #fff; border-radius: 6px; padding: 60px 56px; text-align: center; }
.ces-dark h2 { color: #fff; font-size: clamp(1.5rem, 3.4vw, 2.2rem); margin-bottom: 28px; }
.ces-dark p { color: #eef1ef; font-size: 1.08rem; max-width: 60em; margin: 0 auto 18px; }
.ces-dark p strong { color: #fff; }
.get-list { max-width: 720px; margin: 0 auto; list-style: none; padding: 0; }
.get-list li { font-size: 1.12rem; margin: 0 0 18px; color: #17181a; }
.get-list li strong { color: #111; }
.ces-price { text-align: center; margin: 20px auto 0; }
.ces-price h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.ces-price .no { font-size: 1.25rem; color: var(--dg); margin: 12px 0; }
.ces-price .just { font-size: 1.15rem; font-weight: 700; color: var(--dg); margin-top: 18px; }
.ces-form-head { text-align: center; max-width: 820px; margin: 0 auto 30px; }
.ces-form-head h2 { font-size: clamp(2rem, 5vw, 3.2rem); }

/* ==========================================================================
   Stub pages
   ========================================================================== */
.stub { text-align: center; padding: 90px 0 60px; max-width: 760px; margin: 0 auto; }
.stub h1 { font-size: clamp(2.4rem, 5vw, 3.4rem); margin-bottom: .4em; }
.stub p { color: var(--ink-soft); font-size: 1.1rem; margin: 0 auto 28px; max-width: 46em; }
.stub .tag { display:inline-block; background: var(--cream); color: var(--dg); font-weight:600; padding:8px 18px; border-radius:30px; margin-bottom:26px; font-family:var(--ff-display); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; padding: 44px 28px; }
  .hero .phone { order: 2; }
  .cols4 { grid-template-columns: repeat(2, 1fr); gap: 40px 28px; }
  .cases { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 34px; }
  .stat-card { margin: 24px 0 0; }
  .reading-box { max-width: 100%; }
  .stat-row { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .ces-dark { padding: 44px 28px; }
  .site-footer.angled { clip-path: polygon(0 8%, 33% 0, 100% 6%, 100% 100%, 0 100%); }
}
@media (max-width: 640px) {
  .site-header { padding-top: 20px; }
  .site-header .container { gap: 10px 14px; flex-wrap: wrap; row-gap: 12px; }
  .brand { gap: 8px; }
  .brand-logo { height: 30px; }
  .site-nav { gap: 10px 16px; flex-wrap: wrap; justify-content: flex-end; }
  .site-nav a.link { font-size: .92rem; }
  .site-nav .btn { padding: 10px 14px; font-size: .78rem; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .band { padding: 60px 0; }
  .cols4 { grid-template-columns: 1fr; }
  .logowall { gap: 24px 36px; }
  .logowall img { max-height: 32px; max-width: 104px; }
  .footer-inner { grid-template-columns: 1fr; }
  .case { padding: 30px 26px; }
  .reading-box { padding: 32px 28px; }
  .stat-card { padding: 22px 18px; }
}
