/* =========================================================
   PROMPT MAMA — STYLES
   Brand palette + Poppins/Caveat type system + components
   ========================================================= */

:root {
  --pink: #FF3D8A;
  --pink-soft: #FFD9E6;
  --pink-bg: #FFE8F1;
  --blue: #B8DDF5;
  --blue-deep: #7BC0E8;
  --yellow: #FFE45E;
  --yellow-soft: #FFF4B8;
  --navy: #1A2B4A;
  --cream: #FFF9F0;
  --white: #FFFFFF;

  --shadow-card: 0 6px 0 var(--navy);
  --shadow-card-hover: 0 8px 0 var(--navy);
  --shadow-soft: 0 12px 40px rgba(26, 43, 74, 0.12);
}

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

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

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--navy);
  background: var(--cream);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

/* ---------- LAYOUT ---------- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- TOP BAR ---------- */
.topbar {
  background: var(--navy);
  color: var(--white);
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.5px;
  position: relative;
}
.topbar .topbar-message span[aria-hidden="true"] {
  color: var(--yellow);
}

/* ---------- HAMBURGER ---------- */
.hamburger {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  width: 38px;
  height: 32px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 6px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 60;
}
.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--yellow);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}
.hamburger:hover span {
  background: var(--pink);
}
body.nav-open .hamburger span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
body.nav-open .hamburger span:nth-child(2) {
  opacity: 0;
}
body.nav-open .hamburger span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* ---------- SLIDE-OUT NAV ---------- */
.site-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 360px;
  max-width: 88vw;
  height: 100vh;
  background: var(--navy);
  color: var(--white);
  z-index: 100;
  transform: translateX(110%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.25);
}
body.nav-open .site-nav {
  transform: translateX(0);
}
.site-nav[aria-hidden="false"] {
  transform: translateX(0);
}
.site-nav-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: transparent;
  border: 0;
  color: var(--yellow);
  font-size: 38px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  padding: 4px 10px;
}
.site-nav-close:hover {
  color: var(--pink);
}
.site-nav-inner {
  padding: 80px 36px 40px;
}
.site-nav-tag {
  font-family: 'Caveat', cursive;
  color: var(--yellow);
  font-size: 28px;
  font-weight: 600;
  display: block;
  margin-bottom: 24px;
}
.site-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
}
.site-nav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.site-nav li a {
  display: block;
  padding: 18px 0;
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.01em;
  transition: color 0.2s ease, padding 0.2s ease;
}
.site-nav li a:hover {
  color: var(--yellow);
  padding-left: 8px;
}
.site-nav .nav-sub {
  display: block;
  font-family: 'Caveat', cursive;
  color: var(--pink);
  font-size: 18px;
  font-weight: 500;
  margin-top: 2px;
  letter-spacing: 0;
}
.site-nav-socials {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 12px;
}
.site-nav-socials a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  border-bottom: 2px solid var(--pink);
  padding-bottom: 2px;
}
.site-nav-socials a:hover {
  color: var(--yellow);
  border-color: var(--yellow);
}
.site-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(26, 43, 74, 0.5);
  backdrop-filter: blur(2px);
  z-index: 90;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
body.nav-open .site-nav-backdrop {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 600px) {
  .topbar .topbar-message {
    font-size: 12px;
    display: inline-block;
    padding-right: 32px;
  }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--blue) 0%, var(--pink-bg) 100%);
  padding: 70px 24px 90px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(26, 43, 74, 0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
}

.logo-img {
  width: 180px;
  height: auto;
  margin: 0 auto 24px;
  filter: drop-shadow(0 6px 18px rgba(26, 43, 74, 0.12));
  animation: floaty 4s ease-in-out infinite;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.eyebrow {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 2px;
  padding: 8px 16px;
  border-radius: 999px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.eyebrow .star {
  color: var(--pink);
  margin: 0 4px;
}

h1.hero-title {
  font-weight: 900;
  font-size: clamp(46px, 8.5vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 18px;
}
h1.hero-title .accent {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  color: var(--pink);
  font-style: italic;
  font-size: clamp(46px, 8.5vw, 88px);
  display: inline-block;
  transform: translateY(6px);
}

.hero-sub {
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 500;
  color: var(--navy);
  max-width: 620px;
  margin: 0 auto 36px;
  opacity: 0.85;
}
.hero-sub strong {
  background: var(--yellow);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
}

.cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.cta-row-secondary {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
}
.btn-primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 5px 0 var(--navy);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 0 var(--navy);
}
.btn-secondary {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 5px 0 var(--navy);
}
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 0 var(--navy);
}
.btn-yellow {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 5px 0 #d4b800;
}
.btn-yellow:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 0 #d4b800;
}
.btn-with-flag {
  position: relative;
  overflow: visible;
}
.btn-flag {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--pink);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  border: 2px solid var(--navy);
  transform: rotate(6deg);
  white-space: nowrap;
  box-shadow: 0 2px 0 var(--navy);
  pointer-events: none;
}

.btn-ghost {
  display: inline-block;
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 2px solid var(--navy);
  text-transform: uppercase;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.btn-ghost:hover {
  color: var(--pink);
  border-color: var(--pink);
}

/* ---------- STAT STRIP ---------- */
.stat-strip {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.stat-num {
  font-weight: 900;
  font-size: 32px;
  color: var(--navy);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.7;
  margin-top: 4px;
}

/* ---------- MARQUEE ---------- */
.marquee {
  background: var(--navy);
  color: var(--white);
  padding: 18px 0;
  overflow: hidden;
  border-top: 4px solid var(--yellow);
  border-bottom: 4px solid var(--pink);
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: scroll 35s linear infinite;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 1px;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 48px;
}
.marquee-track .dot {
  color: var(--yellow);
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- ABOUT ---------- */
.about {
  padding: 100px 24px 80px;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}
.about-photo {
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
  border: 4px solid var(--white);
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}
.about-photo-wrap {
  position: relative;
}
.about-photo-wrap::before {
  content: '';
  position: absolute;
  inset: -16px -16px 16px 16px;
  background: var(--pink);
  border-radius: 50%;
  z-index: -1;
}

.about-content h2 {
  font-weight: 900;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.about-content h2 .scribble {
  font-family: 'Caveat', cursive;
  color: var(--pink);
  font-style: italic;
  font-weight: 700;
  font-size: 0.92em;
}
.about-content p {
  font-size: 17px;
  margin-bottom: 18px;
  color: #2a3a5a;
  line-height: 1.7;
}
.about-content .highlight {
  background: var(--yellow);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
}

/* ---------- TRIO (3-COLUMN HIGHLIGHT) ---------- */
.trio {
  padding: 100px 24px;
  background: var(--blue);
  position: relative;
}
.trio-head {
  text-align: center;
  margin-bottom: 48px;
}
.trio-head .scribble-tag {
  font-family: 'Caveat', cursive;
  color: var(--pink);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}
.trio-head h2 {
  font-weight: 900;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.trio-head h2 em {
  font-family: 'Caveat', cursive;
  color: var(--pink);
  font-style: italic;
  font-weight: 700;
}

.trio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 80px;
}
.trio-card {
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 22px;
  padding: 34px 30px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease;
  text-decoration: none;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}
.trio-card:hover {
  transform: translateY(-4px);
}
.trio-navy { background: var(--navy); color: var(--white); }
.trio-pink { background: var(--pink); color: var(--white); }
.trio-yellow { background: var(--yellow); color: var(--navy); }

.trio-tag {
  font-family: 'Caveat', cursive;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.5px;
  align-self: flex-start;
}
.trio-navy .trio-tag { color: var(--yellow); }
.trio-pink .trio-tag { color: var(--yellow); }
.trio-yellow .trio-tag { color: var(--pink); }
.trio-tag.new-pill {
  font-family: 'Poppins', sans-serif;
  background: var(--pink);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 6px 14px;
  border-radius: 999px;
  transform: rotate(-2deg);
}

.trio-card h3 {
  font-weight: 900;
  font-size: 23px;
  line-height: 1.22;
  letter-spacing: -0.015em;
}
.trio-card h3 em {
  font-family: 'Caveat', cursive;
  font-style: italic;
  font-weight: 700;
  font-size: 1.3em;
  line-height: 0.95;
  margin-right: 2px;
}
.trio-navy h3 em { color: var(--pink); }
.trio-pink h3 em { color: var(--yellow); }
.trio-yellow h3 em { color: var(--pink); }
.trio-card h3 .yellow-hl {
  background: var(--yellow);
  color: var(--navy);
  padding: 1px 8px;
  border-radius: 6px;
  display: inline-block;
  transform: rotate(-1deg);
}

.trio-card p {
  font-size: 14.5px;
  line-height: 1.6;
  opacity: 0.92;
}
.trio-card p strong {
  font-weight: 800;
}

.trio-stats {
  display: flex;
  gap: 14px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.trio-stats > div {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.trio-stats .num {
  font-weight: 900;
  font-size: 22px;
  color: var(--yellow);
  line-height: 1;
}
.trio-stats .label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.75;
  margin-top: 4px;
}

.trio-feed-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.trio-feed-list li {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.trio-feed-list .dot {
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

.trio-pdf-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 12px;
  margin-top: 4px;
}
.trio-pdf-row .pdf-icon {
  font-size: 20px;
}
.trio-pdf-row .pdf-meta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.trio-arrow {
  margin-top: auto;
  padding-top: 8px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.trio-navy .trio-arrow { color: var(--yellow); }
.trio-pink .trio-arrow { color: var(--yellow); }

/* ---------- MORE TOOLS HEAD ---------- */
.more-tools-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
  padding-top: 24px;
  border-top: 2px dashed rgba(26, 43, 74, 0.25);
}
.more-tools-head h3 {
  font-weight: 900;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.more-tools-head h3 em {
  font-family: 'Caveat', cursive;
  color: var(--pink);
  font-style: italic;
  font-weight: 700;
}
.more-tools-link {
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 3px solid var(--pink);
  padding-bottom: 2px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .trio-grid {
    grid-template-columns: 1fr;
  }
  .trio-card h3 {
    font-size: 28px;
  }
}

/* ---------- CAEVO SPOTLIGHT ---------- */
.caevo {
  background: var(--navy);
  color: var(--white);
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.caevo::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 61, 138, 0.25) 0%, transparent 70%);
  pointer-events: none;
}
.caevo::after {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -150px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 228, 94, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.caevo-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}
.caevo .scribble-tag {
  font-family: 'Caveat', cursive;
  color: var(--yellow);
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}
.caevo h2 {
  font-weight: 900;
  font-size: clamp(40px, 6.5vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.caevo h2 em {
  font-family: 'Caveat', cursive;
  color: var(--pink);
  font-style: italic;
  font-weight: 700;
}
.caevo h2 .yellow-hl {
  background: var(--yellow);
  color: var(--navy);
  padding: 2px 14px;
  border-radius: 8px;
  display: inline-block;
  transform: rotate(-1deg);
}
.caevo p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 14px;
  line-height: 1.6;
}
.caevo .caevo-tag {
  font-family: 'Caveat', cursive;
  color: var(--yellow);
  font-size: 26px;
  font-weight: 600;
  margin: 24px 0 32px;
  letter-spacing: 0.5px;
}
.caevo-stats {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.caevo-stat {
  text-align: center;
}
.caevo-stat .num {
  font-weight: 900;
  font-size: 28px;
  color: var(--yellow);
  line-height: 1;
}
.caevo-stat .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 6px;
}

/* ---------- TOOLS ---------- */
.tools {
  padding: 100px 24px;
  background: var(--blue);
  position: relative;
}
.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-head h2 {
  font-weight: 900;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.section-head h2 em {
  font-family: 'Caveat', cursive;
  color: var(--pink);
  font-style: italic;
  font-weight: 700;
}
.section-head .lede {
  font-family: 'Caveat', cursive;
  color: var(--pink);
  font-size: 30px;
  font-weight: 600;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.tool-card {
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 22px;
  padding: 32px 30px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease;
  text-decoration: none;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tool-card:hover {
  transform: translateY(-4px);
}
.tool-card.pink { background: var(--pink); color: var(--white); }
.tool-card.yellow { background: var(--yellow); }
.tool-card.navy { background: var(--navy); color: var(--white); }

.tool-tag {
  display: inline-block;
  background: var(--navy);
  color: var(--yellow);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 6px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  align-self: flex-start;
}
.tool-card.pink .tool-tag { background: var(--white); color: var(--pink); }
.tool-card.yellow .tool-tag { background: var(--navy); color: var(--yellow); }
.tool-card.navy .tool-tag { background: var(--yellow); color: var(--navy); }

.tool-card h3 {
  font-weight: 800;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.tool-card h3 em {
  font-family: 'Caveat', cursive;
  font-style: italic;
  font-weight: 700;
}
.tool-card p {
  font-size: 15px;
  line-height: 1.55;
  opacity: 0.9;
}
.tool-card .arrow {
  margin-top: auto;
  padding-top: 12px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ---------- FREEBIE / PARENT GUIDE ---------- */
.freebie {
  padding: 100px 24px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.freebie::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: var(--yellow-soft);
  border-radius: 50%;
  opacity: 0.6;
}
.freebie::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: var(--pink-soft);
  border-radius: 50%;
  opacity: 0.5;
}
.freebie-card {
  position: relative;
  background: var(--navy);
  color: var(--white);
  padding: 64px 48px;
  border-radius: 32px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(26, 43, 74, 0.25);
}
.freebie-card .lil-tag {
  font-family: 'Caveat', cursive;
  color: var(--yellow);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
}
.freebie-card h2 {
  font-weight: 900;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.freebie-card h2 em {
  font-family: 'Caveat', cursive;
  color: var(--pink);
  font-style: italic;
  font-weight: 700;
}
.freebie-card p {
  font-size: 17px;
  margin-bottom: 32px;
  opacity: 0.9;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- CONTENT FEED ---------- */
.content-feed {
  padding: 100px 24px;
  background: var(--pink-bg);
}
.feed-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 48px;
  gap: 20px;
  flex-wrap: wrap;
}
.feed-header h2 {
  font-weight: 900;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.feed-header h2 em {
  font-family: 'Caveat', cursive;
  color: var(--pink);
  font-style: italic;
  font-weight: 700;
}
.feed-header .ig-link {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 3px solid var(--pink);
  padding-bottom: 2px;
  font-size: 15px;
}
.feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feed-item {
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: var(--white);
  border: 2px solid var(--navy);
  box-shadow: 0 4px 0 var(--navy);
  transition: transform 0.2s ease;
  text-decoration: none;
  color: var(--navy);
}
.feed-item:hover {
  transform: translateY(-3px);
}
.feed-item.pink-bg { background: var(--pink); }
.feed-item.yellow-bg { background: var(--yellow); }
.feed-item.blue-bg { background: var(--blue); }
.feed-item.navy-bg { background: var(--navy); color: var(--white); }
.feed-item-content {
  position: absolute;
  inset: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.feed-item .feed-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.7;
}
.feed-item.pink-bg .feed-tag,
.feed-item.navy-bg .feed-tag {
  color: var(--white);
  opacity: 0.85;
}
.feed-item h4 {
  font-weight: 800;
  font-size: 17px;
  line-height: 1.2;
}
.feed-item.pink-bg h4,
.feed-item.navy-bg h4 {
  color: var(--white);
}

/* ---------- PRESS ---------- */
.press {
  padding: 100px 24px;
  background: var(--cream);
}
.press-card {
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: var(--shadow-card);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.press-card .scribble-tag {
  font-family: 'Caveat', cursive;
  color: var(--pink);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
}
.press-card h2 {
  font-weight: 900;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.press-card p {
  font-size: 16px;
  margin-bottom: 28px;
  color: #2a3a5a;
  line-height: 1.6;
}
.press-card-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--navy);
  color: var(--white);
  padding: 80px 24px 40px;
  text-align: center;
}
footer .logo-img {
  width: 130px;
  margin-bottom: 24px;
  filter: none;
}
footer h2 {
  font-weight: 900;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
footer h2 em {
  font-family: 'Caveat', cursive;
  color: var(--yellow);
  font-style: italic;
  font-weight: 700;
}
footer .tagline {
  font-size: 17px;
  opacity: 0.8;
  margin-bottom: 36px;
}
.socials {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--white);
  color: var(--navy);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.2s ease, background 0.2s ease;
}
.social-btn:hover {
  background: var(--yellow);
  transform: translateY(-2px);
}
.social-btn svg {
  width: 18px;
  height: 18px;
}
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
  font-size: 12px;
  opacity: 0.5;
  letter-spacing: 1px;
}

/* ---------- REVEAL ANIMATION ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Respect motion preference */
@media (prefers-reduced-motion: reduce) {
  .logo-img,
  .marquee-track {
    animation: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ---------- SUBPAGE ---------- */
.subpage-hero {
  position: relative;
  padding: 70px 24px 60px;
  text-align: center;
  overflow: hidden;
}
.subpage-hero.bg-blue { background: linear-gradient(180deg, var(--blue) 0%, var(--pink-bg) 100%); }
.subpage-hero.bg-navy { background: var(--navy); color: var(--white); }
.subpage-hero.bg-yellow { background: var(--yellow); }
.subpage-hero.bg-pink { background: var(--pink-bg); }

.subpage-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(26, 43, 74, 0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.subpage-hero.bg-navy::before {
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
}
.subpage-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
}
.back-home {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
  border-bottom: 2px solid currentColor;
  padding-bottom: 2px;
  margin-bottom: 28px;
  opacity: 0.85;
}
.back-home:hover { opacity: 1; }

.subpage-hero h1 {
  font-weight: 900;
  font-size: clamp(40px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.subpage-hero h1 em {
  font-family: 'Caveat', cursive;
  color: var(--pink);
  font-style: italic;
  font-weight: 700;
}
.subpage-hero.bg-navy h1 em { color: var(--yellow); }
.subpage-hero h1 .yellow-hl {
  background: var(--yellow);
  color: var(--navy);
  padding: 2px 14px;
  border-radius: 8px;
  display: inline-block;
  transform: rotate(-1deg);
}
.subpage-hero .lede {
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 500;
  max-width: 620px;
  margin: 0 auto;
  opacity: 0.88;
}
.subpage-hero .scribble-tag {
  font-family: 'Caveat', cursive;
  color: var(--pink);
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 4px;
  display: block;
}
.subpage-hero.bg-navy .scribble-tag { color: var(--yellow); }

.subpage-section {
  padding: 80px 24px;
  background: var(--cream);
}
.subpage-section.alt { background: var(--pink-bg); }
.subpage-section.navy { background: var(--navy); color: var(--white); }
.subpage-section h2 {
  font-weight: 900;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.subpage-section h2 em {
  font-family: 'Caveat', cursive;
  color: var(--pink);
  font-style: italic;
  font-weight: 700;
}
.subpage-section p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 18px;
  color: inherit;
  max-width: 720px;
}
.subpage-section ul.checklist {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
.subpage-section ul.checklist li {
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 14px;
  padding: 14px 18px;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.subpage-section ul.checklist li::before {
  content: '✦';
  color: var(--pink);
  font-weight: 900;
  flex-shrink: 0;
}
.subpage-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 16px;
}

@media (max-width: 720px) {
  .subpage-section ul.checklist {
    grid-template-columns: 1fr;
  }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 820px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-photo-wrap {
    max-width: 360px;
    margin: 0 auto;
  }
  .tools-grid {
    grid-template-columns: 1fr;
  }
  .feed-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .freebie-card {
    padding: 48px 28px;
  }
  .stat-strip {
    gap: 28px;
  }
  .stat-num {
    font-size: 26px;
  }
  .hero {
    padding: 50px 20px 70px;
  }
  .feed-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .logo-img {
    width: 150px;
  }
}

@media (max-width: 480px) {
  .feed-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .feed-item h4 {
    font-size: 14px;
  }
  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    justify-content: center;
  }
  .marquee-track {
    font-size: 15px;
    gap: 30px;
  }
  .marquee-track span {
    gap: 30px;
  }
  .press-card {
    padding: 36px 24px;
  }
}
