.lp-container {
  max-width: 80rem; /* same as max-w-5xl-ish */
  margin: 0 auto;
  padding: 0 1.25rem; /* mobile side padding */
}
.lp-card {
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(96, 165, 250, 0.25);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(96, 165, 250, 0.15);
}
.lp-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #e6efff;
  margin-bottom: 0.75rem;
}

.lp-text {
  color: #cbd5f5;
  line-height: 1.6;
  margin: 0.75rem 0;
}
.lp-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lp-checklist li {
  position: relative;
  padding-left: 2rem;
  margin: 0.6rem 0;
  color: #d7e2ff;
  font-size: 1rem;
}

.lp-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1rem;
  background: rgba(37, 99, 235, 0.18);
  border: 1px solid rgba(96, 165, 250, 0.7);
  color: #60a5fa;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 600;
}
.lp-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

/* Mobile: stack */
@media (max-width: 768px) {
  .lp-two-col {
    grid-template-columns: 1fr;
  }
}

/* ===== Layout shells ===== */

.section {
  padding: 3rem 0;
}

.section-inner {
  max-width: 72rem; /* ~1152px, similar to your typing box width */
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== Hero ===== */

.hero {
  padding: 5rem 0 3rem;
  text-align: center;
}

.hero-inner {
  max-width: 48rem;
}

.hero-lede {
  font-size: 2.5rem;
  line-height: 1.1;
  font-weight: 700;
  color: #e5f0ff;
}

.hero-sub {
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: #93c5fd;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-tagline {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #94a3b8;
}

/* ===== Cards (unified) ===== */

.card {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 1.25rem;
  border: 1px solid rgba(30, 64, 175, 0.7);
  padding: 2rem;
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.8),
    0 0 0 1px rgba(15, 23, 42, 0.9);
}


/* Section labels / subtitles */

.section-label {
  font-size: 0.9rem;
  color: #9ca3af;
  margin-bottom: 1.5rem;
}

.section-label--center {
  text-align: center;
}

/* ===== Prompt typing grid ===== */

.prompt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .prompt-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* your existing .prompt-box, .prompt-label etc can stay as-is */

/* ===== Strapline text ===== */

.section--strapline .strapline {
  font-size: 0.8rem;
  color: #94a3b8;
  text-align: center;
}

@media (min-width: 768px) {
  .section--strapline .strapline {
    text-align: left;
  }
}

/* ===== Why section ===== */

.two-col--why {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .two-col--why {
    grid-template-columns: 1fr;
  }
}

.lp-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #e5edff;
  margin-bottom: 0.75rem;
}

.lp-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #cbd5f5;
  margin: 0.6rem 0;
}

/* Checkmark list */

.lp-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lp-checklist li {
  position: relative;
  padding-left: 2rem;
  margin: 0.6rem 0;
  color: #d7e2ff;
  font-size: 0.95rem;
}

.lp-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(96, 165, 250, 0.8);
  background: rgba(37, 99, 235, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: #60a5fa;
}

/* ===== Inside PromptlyLiz grid ===== */

.lp-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .lp-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.lp-feature-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #bfdbfe;
}

.lp-feature-card p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #cbd5f5;
}

/* ===== Practice card, founder, public, etc. reuse .card ===== */

.card--practice h2,
.card--leaderboard h2,
.card--founder .founder-title,
.card--public .built-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #bfdbfe;
}

.card--practice p,
.card--leaderboard .tagline,
.card--founder .founder-text,
.card--public .built-text {
  font-size: 0.9rem;
  color: #cbd5f5;
  margin-top: 0.4rem;
}

.section-actions {
  margin-top: 1rem;
}

/* Leaderboard embed */

.card--leaderboard .leaderboard-embed {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #94a3b8;
}

.leaderboard-footer {
  margin-top: 0.75rem;
  display: flex;
  justify-content: flex-end;
}

.leaderboard-link {
  font-size: 0.75rem;
  color: #94a3b8;
  text-decoration: underline;
}

.leaderboard-link:hover {
  color: #bfdbfe;
}

/* Final CTA */

.section--final-cta {
  text-align: center;
}

.final-cta-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #e5edff;
}

.final-cta-text {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #cbd5f5;
}

/* Built in public & founder already covered by card styles */

/* Footer */

.footer {
  border-top: 1px solid rgba(30, 64, 175, 0.4);
  padding: 2rem 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: #64748b;
}
/* Two-column layout for leaderboard */
.two-col--leaderboard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 768px) {
  .two-col--leaderboard {
    grid-template-columns: 1fr;
  }
}

.leaderboard-left h2 {
  margin-bottom: 0.5rem;
}

.leaderboard-left .tagline {
  font-size: 0.9rem;
  color: #94a3b8;
}

/* Leaderboard card tweaks */
.card--leaderboard {
  padding: 2rem;
}

.leaderboard-embed {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #94a3b8;
}

.leaderboard-footer {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-end;
}

.leaderboard-link {
  font-size: 0.85rem;
  text-decoration: underline;
  color: #9ca3af;
}

.leaderboard-link:hover {
  color: #60a5fa;
}


/* MOBILE LEADERBOARD FIX */
@media (max-width: 768px) {

  /* Force the table rows to act like flex containers */
  #leaderboard-embed tr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  /* Hide the first column (#1, #2, #3, etc.) */
  #leaderboard-embed td:first-child {
    display: none !important;
  }

  /* Name column (second td) */
  #leaderboard-embed td:nth-child(2) {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e2e8f0;
  }

  /* XP column (third td) */
  #leaderboard-embed td:nth-child(3) {
    white-space: nowrap;
    color: #94a3b8;
  }

  /* Medals for top 5 */
  #leaderboard-embed tr:nth-child(1) td:nth-child(2)::before { content: "🥇"; }
  #leaderboard-embed tr:nth-child(2) td:nth-child(2)::before { content: "🥈"; }
  #leaderboard-embed tr:nth-child(3) td:nth-child(2)::before { content: "🥉"; }
  #leaderboard-embed tr:nth-child(4) td:nth-child(2)::before { content: "🏅"; }
  #leaderboard-embed tr:nth-child(5) td:nth-child(2)::before { content: "🎖"; }
}


.hero-inner {
  max-width: 650px; /* sweet spot */
  margin: 0 auto;
}
.hero-why {
  line-height: 1.55;
  margin: 1.2rem auto;
  opacity: 0.9; /* softer */
}
.hero-why,
.hero-punchline {
  font-size: 1.05rem;
  color: var(--muted); /* softer light gray-blue */
}
.hero-punchline strong {
  color: var(--ink); /* brighter to stand out */
}


/* ============= PROMPT TRANSFORM SECTION ============= */

/* Outer card */
.section--prompt-transform .card--wide {
  max-width: 900px;
  margin: 2rem auto;
  padding: 2rem 2.4rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(16,22,40,0.95), rgba(10,14,25,0.98));
  border: 1px solid rgba(90,150,255,0.3);
  box-shadow: 0 0 24px rgba(60,130,255,0.22);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.section--prompt-transform .card--wide:hover {
  box-shadow: 0 0 36px rgba(60,130,255,0.32);
  transform: translateY(-3px);
}

/* Grid: stack on mobile, 2 cols on desktop */
.prompt-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .prompt-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Individual typing boxes */
.prompt-box {
  position: relative;
  border-radius: 14px;
  padding: 1.4rem 1.5rem 1.7rem;
  background: rgba(7, 11, 22, 0.9);
  border: 1px solid rgba(90,150,255,0.25);
  box-shadow: 0 0 12px rgba(40,100,220,0.18);
}

/* Labels: From THIS / To THIS */
.prompt-label {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #76a8ff;
  margin-bottom: 0.5rem;
}

.from-label {
  color: #9bb5ff;
}

.to-label {
  color: #5fd0ff;
}

/* Prompt typing box*/

/* Text area where typing anim shows */
.prompt-content {
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--ink);
  min-height: 200px;
}
/* Mobile override */
@media (max-width: 600px) {
  .prompt-content {
    min-height:400px;
  }
}
/* Typing cursor */
.typing-cursor {
  display: inline-block;
  margin-left: 2px;
  width: 7px;
  height: 1.1em;
  vertical-align: text-bottom;
  background: #76a8ff;
  animation: blink-cursor 0.9s steps(1) infinite;
  opacity: 0.9;
}

@keyframes blink-cursor {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Section heading + strapline */
.section-label--center {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 0.75rem;
}

.section--strapline .strapline {
  max-width: 720px;
  margin: 1.5rem auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
}
.prompt-transform-head {
  text-align: center;
  margin: 3rem auto 1.5rem;
  max-width: 720px;
}

/* Small pill above the title */
.prompt-kicker {
  display: inline-block;
  padding: 0.15rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(90,150,255,0.15);
  border: 1px solid rgba(90,150,255,0.4);
  color: #bcd3ff;
  margin-bottom: 0.75rem;
}

/* Main heading */
.prompt-title {
  font-size: 1.7rem;
  line-height: 1.25;
  color: var(--ink);
  font-weight: 700;
}

/* Highlight PromptlyLiz */
.prompt-title span {
  background: linear-gradient(90deg, #6cb5ff, #a47bff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


/* title cards*/
.inside-title {
  text-align: center;
  font-size: 1.9rem;
  margin-bottom: 2rem;
  font-weight: 700;
  color: var(--ink);
}

.inside-title span {
  background: linear-gradient(90deg, #6cb5ff, #a47bff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.inside-grid {
  display: grid;
  gap: 1.6rem;
}

@media (min-width: 768px) {
  .inside-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.inside-card {
  background: rgba(16, 22, 40, 0.85);
  border: 1px solid rgba(90,150,255,0.25);
  border-radius: 16px;
  padding: 1.6rem 1.4rem;
  box-shadow: 0 0 18px rgba(60,130,255,0.12);
  backdrop-filter: blur(6px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.inside-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(60,130,255,0.22);
}

.inside-card h3 {
  font-size: 1.15rem;
  color: #84b7ff;
  margin-bottom: 0.5rem;
}

.inside-card p {
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.95rem;
}


.card--practice {
  background: rgba(16, 22, 40, 0.85);
  border: 1px solid rgba(90,150,255,0.25);
  border-radius: 18px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 0 18px rgba(60,130,255,0.12);
  backdrop-filter: blur(6px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover state */
.card--practice:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 32px rgba(60,130,255,0.28);
  border-color: rgba(120,180,255,0.45);
}

.leaderboard-head {
  text-align: center;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.leaderboard-title {
  margin-bottom: 0.5rem;
}

.leaderboard-sub {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.leaderboard-reset {
  color: #7ca8ff;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

/* Shared card animation styles */
.card--founder,
.card--public,
.section--final-cta .section-inner {
  background: rgba(16,22,40,0.85);
  border: 1px solid rgba(90,150,255,0.25);
  border-radius: 18px;
  padding: 2rem 2.4rem;
  box-shadow: 0 0 18px rgba(60,130,255,0.12);
  backdrop-filter: blur(6px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

/* Hover Glow + Lift */
.card--founder:hover,
.card--public:hover,
.section--final-cta .section-inner:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(60,130,255,0.28);
  border-color: rgba(120,180,255,0.45);
}
/* Reset the section wrapper so it's NOT a card */
.section--final-cta .section-inner {
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  padding: 0;          /* let the section's global padding handle spacing */
  display: block;      /* normal block, not inline-block */
}


/* Final CTA shouldn't look like a card by default, so add a soft wrapper */
.section--final-cta .section-inner {
  display: inline-block;
  margin: 0 auto;
  padding: 2.4rem 3rem;
}

.final-cta-card {
  background: rgba(16,22,40,0.85);
  border: 1px solid rgba(90,150,255,0.25);
  border-radius: 18px;
  padding: 1.8rem 2.2rem;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 0 18px rgba(60,130,255,0.10);
  backdrop-filter: blur(6px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.final-cta-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 28px rgba(60,130,255,0.25);
  border-color: rgba(120,180,255,0.45);
}

.section--loop .loop-inner {
  text-align: center;
  margin: 3rem auto 2rem;
}

.loop-label {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.loop-steps {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  background: rgba(10, 16, 30, 0.9);
  border: 1px solid rgba(90,150,255,0.4);
  box-shadow: 0 0 18px rgba(60,130,255,0.2);
}

.loop-step {
  font-size: 0.98rem;
  color: var(--muted);
  transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.3s ease;
}

.loop-arrow {
  font-size: 0.9rem;
  color: rgba(140, 180, 255, 0.8);
}

/* Active word highlight */
.loop-step.is-active {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(120, 190, 255, 0.9);
  transform: translateY(-1px);
}
/* Base state: off-screen + hidden (mobile only) */
@media (max-width: 768px) {
  .reveal-card {
    opacity: 0;
    transform: translateY(24px);
    transition:
      opacity 0.5s ease-out,
      transform 0.5s ease-out;
  }

  .reveal-card.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .reveal-card {
    transition: none;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* spacing issue*/
@media (max-width: 600px) {

  /* Reduce space between sections */
  .section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  /* Reduce spacing inside each section */
  .section-inner {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  /* Fix large bottom margins on cards */
  .card,
  .final-cta-card,
  .inside-card {
    margin-bottom: 1.4rem; /* was probably 2–3rem */
  }

  /* Prevent extra spacing on reveal animations */
  .reveal-card {
    margin-top: 0 !important;
    margin-bottom: 1.4rem !important;
  }
}
/* Normalize card padding on mobile */
@media (max-width: 600px) {
  .card,
  .final-cta-card,
  .inside-card {
    padding: 1.4rem 1.2rem;
  }
}
@media (max-width: 600px) {
  .inside-grid {
    gap: 1.2rem !important;
  }
}
@media (max-width: 600px) {
  /* Reduce the offset under the fixed nav on mobile */
  .lp-shell,
  .site-shell.lp-shell {
    padding-top: 72px; /* or 64px if you want it even tighter */
  }

  /* Reduce extra padding on the hero itself */
  .hero {
    padding-top: 1.5rem;
  }

  /* Kill default top margin on the H1 */
  .hero-lede {
    margin-top: 0;
  }
}

@media (max-width: 600px) {
  .prompt-title {
    font-size: 1.35rem;        /* shrink slightly */
    line-height: 1.25;
    text-align: center;
    max-width: 280px;          /* THIS fixes the width! */
    margin: 0 auto 1.2rem;     /* centers it + spacing below */
    padding: 0 0.5rem;         /* optional small padding */
    display: block;
  }
}
.section--why .lp-title {
  font-size: 1.7rem;              /* bigger */
  font-weight: 800;               /* bold bold */
  color: var(--ink);              /* main text color */
  margin-bottom: 1rem;
  letter-spacing: -0.5px;         /* tighter, stronger look */
}
.section--why .lp-text strong {
  color: var(--cta);              /* your neon blue */
  font-weight: 700;
}
/* WORD FLIP CONTAINER */
/* Block container */
.basics-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* change to center if you want it centered */
  gap: 0.6rem;
}

/* First line */
.basics-line {
  font-weight: 600;
  color: var(--ink);
  font-size: 1.05rem;
}

/* Last line */
.ai-line {
  margin-top: 0.4rem;
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.5;
}

/* FLIP BOX */
/* FLIP BOX */
.flip-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;

  width: 110px;   /* fits “word count” and “constraints” */
  height: 34px;

  background: rgba(20, 40, 70, 0.6);
  border: 1px solid rgba(90, 150, 255, 0.35);
  border-radius: 8px;

  margin: 0.2rem 0;
  overflow: hidden;

  box-shadow: 0 0 12px rgba(60, 130, 255, 0.2);
}

/* FLIP WORDS */
.flip-box .flip-word {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;

  color: var(--cta);
  font-weight: 700;

  opacity: 0;
  animation: flipFade 10.5s infinite; /* 7 words × 1.5s each */
}

/* Animation delays for each word */
.flip-box .flip-word:nth-child(1) { animation-delay: 0s; }
.flip-box .flip-word:nth-child(2) { animation-delay: 1.5s; }
.flip-box .flip-word:nth-child(3) { animation-delay: 3s; }
.flip-box .flip-word:nth-child(4) { animation-delay: 4.5s; }
.flip-box .flip-word:nth-child(5) { animation-delay: 6s; }
.flip-box .flip-word:nth-child(6) { animation-delay: 7.5s; }
.flip-box .flip-word:nth-child(7) { animation-delay: 9s; }

@keyframes flipFade {
  0%   { opacity: 0; }
  5%   { opacity: 1; }  /* fade in quickly */
  15%  { opacity: 1; }  /* stay visible for a short time */
  20%  { opacity: 0; }  /* fade out before the next word starts */
  100% { opacity: 0; }
}


/* ============================
   MOBILE SPACING CLEANUP
   ============================ */
@media (max-width: 600px) {
  /* 1) Sections: less top/bottom padding */
  .section {
    padding-top: 1.6rem !important;
    padding-bottom: 1.6rem !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  /* Hero + prompt-transform should also be tighter */
  .hero {
    padding-bottom: 1.8rem !important;
  }

  .section--prompt-transform,
  .section--strapline,
  .section--why,
  .section--inside,
  .section--loop,
  .section--practice,
  .section--leaderboard,
  .section--founder,
  .section--final-cta,
  .section--built-public {
    padding-top: 1.4rem !important;
    padding-bottom: 1.4rem !important;
  }

  /* 2) Inner wrapper: remove extra vertical padding */
  .section-inner {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  /* 3) Cards: single consistent gap between stacks */
  .card,
  .inside-card,
  .final-cta-card {
    margin-top: 0 !important;
    margin-bottom: 1.2rem !important;  /* main vertical spacing */
  }

  /* Inside grid: tighten gaps between the 4 feature cards */
  .inside-grid {
    gap: 1rem !important;
  }

  /* Loop section: tuck it closer to neighbors */
  .section--loop .loop-inner {
    margin-top: 0.8rem !important;
    margin-bottom: 0.8rem !important;
  }

  /* Founder + built-in-public: keep them snug */
  .section--founder .card--founder,
  .section--built-public .card--public {
    margin-bottom: 1.2rem !important;
  }
}

