/* ============================================================
   PINSIFT — STYLESHEET v3
   Font: Plus Jakarta Sans (all weights)
   Palette: White bg · near-black text · #D92B2B red accent
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:        #D92B2B;
  --red-dark:   #b52020;
  --red-light:  #fef2f2;
  --red-mid:    #fde0e0;
  --black:      #0f0f0f;
  --text:       #111827;
  --text-mid:   #374151;
  --text-light: #6b7280;
  --bg:         #ffffff;
  --bg-off:     #f9fafb;
  --bg-section: #f3f4f6;
  --border:     #e5e7eb;
  --border-mid: #d1d5db;
  --white:      #ffffff;

  --font: 'Plus Jakarta Sans', sans-serif;
  --max-w: 1120px;
  --max-w-n: 760px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.07);
  --shadow-lg: 0 4px 6px rgba(0,0,0,0.05), 0 16px 48px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
p { color: var(--text-mid); }
strong { color: var(--text); font-weight: 700; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
.container--n {
  max-width: var(--max-w-n);
  margin: 0 auto;
  padding: 0 40px;
}

.section { padding: 96px 0; }

.section__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 14px;
}

.section__heading {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section__intro {
  font-size: 18px;
  color: var(--text-mid);
  max-width: 620px;
  line-height: 1.75;
  margin-bottom: 56px;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.nav__logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}
.nav__logo span { color: var(--red); }

.nav__cta {
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  border: 1.5px solid var(--red);
  padding: 9px 22px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  letter-spacing: -0.01em;
}
.nav__cta:hover { background: var(--red); color: var(--white); }

/* ============================================================
   HERO — full-width bg, inner max-width centred
   ============================================================ */
.hero {
  background: var(--bg-off);
  border-bottom: 1px solid var(--border);
  width: 100%;
}

.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 40px 88px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 72px;
  align-items: center;
}

/* pill */
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border-mid);
  color: var(--text-mid);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px 6px 10px;
  border-radius: 100px;
  margin-bottom: 28px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.pill__dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(217,43,43,0.18);
}

.hero__headline {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero__headline em {
  font-style: italic;
  color: var(--red);
  font-family: 'Lora', Georgia, serif;
  font-weight: 400;
}

.hero__sub {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 32px;
  max-width: 480px;
}
.hero__sub em {
  font-style: italic;
  color: var(--text);
  font-weight: 500;
}

.hero__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.hero__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-mid);
  line-height: 1.5;
}
.bi {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--red);
}

/* ============================================================
   OPT-IN BOX
   ============================================================ */
.optin-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.optin-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}

.optin-box__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.optin-box__heading {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.optin-box__heading--large {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.optin-box__sub {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 24px;
}
.optin-box__sub--wide { max-width: 480px; margin-left: auto; margin-right: auto; }

/* AWeber embed container */
.aweber-embed { margin-bottom: 18px; }
.aweber-embed--center { max-width: 480px; margin: 0 auto 18px; }

/* Style AWeber form elements to match page */
.aweber-embed input[type="text"],
.aweber-embed input[type="email"] {
  width: 100% !important;
  padding: 13px 16px !important;
  border: 1.5px solid var(--border-mid) !important;
  border-radius: var(--radius-sm) !important;
  font-family: var(--font) !important;
  font-size: 16px !important;
  color: var(--text) !important;
  background: var(--bg-off) !important;
  margin-bottom: 10px !important;
  box-sizing: border-box !important;
  transition: border-color 0.15s !important;
}
.aweber-embed input[type="text"]:focus,
.aweber-embed input[type="email"]:focus {
  border-color: var(--red) !important;
  outline: none !important;
  background: var(--white) !important;
}
.aweber-embed input[type="submit"],
.aweber-embed button[type="submit"] {
  width: 100% !important;
  padding: 14px 24px !important;
  background: var(--red) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: var(--radius-sm) !important;
  font-family: var(--font) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: background 0.15s, transform 0.1s !important;
  letter-spacing: -0.01em !important;
}
.aweber-embed input[type="submit"]:hover,
.aweber-embed button[type="submit"]:hover {
  background: var(--red-dark) !important;
  transform: translateY(-1px) !important;
}

.optin-box__reassure {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
}
.optin-box__reassure li {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
}
.optin-box__reassure svg {
  width: 12px; height: 12px;
  color: var(--red);
  flex-shrink: 0;
}
.optin-box__reassure--center { justify-content: center; margin-top: 16px; }

/* centred opt-in box */
.optin-box--center {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--black);
  color: rgba(255,255,255,0.55);
  padding: 16px 40px;
}
.trust-bar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 28px;
  font-size: 13px;
  font-weight: 500;
}
.td {
  width: 4px; height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   PROBLEM
   ============================================================ */
.problem { background: var(--white); }

.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.problem__copy p {
  margin-bottom: 18px;
  font-size: 17px;
  line-height: 1.8;
}

.callout {
  border-left: 3px solid var(--red);
  background: var(--red-light);
  padding: 18px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.55;
  margin-top: 28px;
}

.compare { display: flex; flex-direction: column; gap: 0; }

.compare__card {
  padding: 24px 24px 20px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
}
.compare__card--muted { background: var(--bg-off); }
.compare__card--good  { background: var(--red-light); border-color: var(--red); }

.compare__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 14px;
}
.compare__card--good .compare__label { color: var(--red); }

.compare__card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.compare__card ul li {
  font-size: 14px;
  color: var(--text-mid);
  padding-left: 16px;
  position: relative;
}
.compare__card ul li::before { content: '—'; position: absolute; left: 0; color: var(--border-mid); }
.compare__card--good ul li::before { content: '→'; color: var(--red); }

.compare__intent {
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 6px;
  display: inline-block;
  letter-spacing: 0.02em;
}
.compare__intent--muted { background: var(--bg-section); color: var(--text-light); }
.compare__intent--good  { background: var(--red-mid); color: var(--red); }

.compare__arrow {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  color: var(--text-light);
  font-size: 13px;
  font-weight: 600;
}
.compare__arrow svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ============================================================
   FEATURES
   ============================================================ */
.features { background: var(--bg-off); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.15s;
}
.feature:hover { box-shadow: var(--shadow); border-color: var(--border-mid); transform: translateY(-2px); }
.feature--highlight { border-color: var(--red); background: var(--red-light); }
.feature--highlight:hover { border-color: var(--red-dark); }

.feature__icon-wrap {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--bg-section);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
  flex-shrink: 0;
}
.feature__icon-wrap svg { width: 22px; height: 22px; color: var(--text-mid); }
.feature__icon-wrap--red { background: var(--red-mid); }
.feature__icon-wrap--red svg { color: var(--red); }

.feature__num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
}

.feature__title {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.25;
  letter-spacing: -0.01em;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.feature__star {
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  background: var(--red-mid);
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

.feature__body {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.72;
  flex: 1;
}

.feature__badge {
  display: inline-block;
  background: var(--red-light);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 5px;
  width: fit-content;
  margin-top: 6px;
  border: 1px solid var(--red-mid);
}
.feature--highlight .feature__badge { background: var(--white); }

/* ============================================================
   HOW IT FITS
   ============================================================ */
.howto { background: var(--white); }

.flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-top: 8px;
}

.flow__step {
  background: var(--bg-off);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.flow__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: var(--border-mid);
  margin-top: 60px;
}
.flow__arrow svg { width: 36px; height: 18px; }

.flow__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--red-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.flow__icon svg { width: 26px; height: 26px; color: var(--red); }

.flow__num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
}

.flow__title {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.flow__body {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ============================================================
   BOTTOM OPT-IN
   ============================================================ */
.bottom-optin {
  background: var(--bg-off);
  border-top: 1px solid var(--border);
}
.bottom-optin .optin-box--center {
  padding: 48px 40px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  padding: 36px 40px;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.footer__logo span { color: var(--red); }
.footer__tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr 380px; gap: 48px; }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  :root { font-size: 16px; }

  .nav { padding: 0 20px; height: 58px; }
  .nav__logo { font-size: 20px; }
  .nav__cta { font-size: 13px; padding: 7px 16px; }

  .hero { width: 100%; }
  .hero__inner {
    grid-template-columns: 1fr;
    padding: 48px 20px 56px;
    gap: 40px;
  }
  .hero__right { max-width: 100%; }

  .container { padding: 0 20px; }
  .container--n { padding: 0 20px; }
  .section { padding: 64px 0; }

  /* dark differentiators section — stack to 1 col on mobile */
  .diff-grid { grid-template-columns: 1fr !important; }

  .features__grid { grid-template-columns: 1fr; gap: 16px; }
  .feature { padding: 26px 22px; }

  .trust-bar { padding: 14px 20px; }
  .td { display: none; }
  .trust-bar__inner { gap: 10px; flex-direction: column; text-align: center; }

  .optin-box { padding: 28px 22px 24px; }
  .optin-box__heading { font-size: 20px; }
  .optin-box__heading--large { font-size: 24px; }

  .bottom-optin .optin-box--center { padding: 36px 22px; }

  .footer { padding: 28px 20px; }
  .footer__inner { flex-direction: column; text-align: center; gap: 4px; }

  .section__intro { margin-bottom: 36px; }
}

@media (max-width: 480px) {
  .hero__headline { font-size: 30px; }
  .section__heading { font-size: 24px; }
  .optin-box__reassure { flex-direction: column; gap: 8px; }
}
