:root {
  --paper: #f0fdfa;
  --paper-deep: #ccfbf1;
  --surface: #ffffff;
  --ink: #1e3a4c;
  --muted: #475569;
  --faint: #64748b;
  --teal: #0d9488;
  --teal-deep: #0f766e;
  --line: #99f6e4;
  --sky: #e0f2fe;
  --shadow: 0 8px 25px rgba(13,148,136,0.07);
}
* { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--muted);
  font-family: Poppins, "Segoe UI", system-ui, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
h1, h2, h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  color: var(--ink);
  text-wrap: balance;
  font-weight: 700;
}
p { text-wrap: pretty; }
a { color: inherit; }
img { max-width: 100%; display: block; }
.skip {
  position: absolute; left: -999px;
}
.skip:focus {
  left: 1rem; top: 1rem; z-index: 50;
  background: var(--surface); padding: 0.5rem 0.75rem; border-radius: 8px;
}
header {
  position: sticky; top: 0; z-index: 40;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 15px rgba(13,148,136,0.1);
}
.nav-wrap {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo img { height: 64px; width: auto; }
nav.desktop { display: none; align-items: center; gap: 2px; flex-wrap: wrap; justify-content: flex-end; }
nav.desktop a {
  border-radius: 999px;
  padding: 0.5rem 0.65rem;
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--muted);
}
nav.desktop a:hover { background: var(--paper-deep); color: var(--ink); }
nav.desktop a.active { background: var(--teal); color: #fff; }
.menu-btn {
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  font-size: 1.4rem;
  cursor: pointer;
}
nav.mobile {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--paper);
  padding: 0.75rem 1rem;
}
nav.mobile.show { display: flex; flex-direction: column; gap: 4px; }
nav.mobile a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink);
}
nav.mobile a.active { background: var(--teal); color: #fff; }
main { flex: 1; }
.wrap { max-width: 72rem; margin: 0 auto; padding: 0 1.5rem; }
.wrap-narrow { max-width: 48rem; margin: 0 auto; padding: 0 1.5rem; }
.hero {
  background: linear-gradient(135deg, #ccfbf1 0%, #e0f2fe 55%, #f0fdfa 100%);
  text-align: center;
  padding: 4rem 1.5rem;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1.2;
  margin: 0;
}
.hero h1 span { color: var(--teal); }
.hero p {
  max-width: 40rem;
  margin: 1.25rem auto 0;
  font-size: 1.15rem;
}
.btns { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 3rem; padding: 0 1.5rem; border-radius: 999px;
  background: var(--teal); color: #fff; font-weight: 600; text-decoration: none;
}
.btn:hover { background: var(--teal-deep); }
.btn-outline {
  background: #fff; color: var(--teal); border: 2px solid var(--teal);
}
.btn-outline:hover { background: var(--teal); color: #fff; }
.btn-gpt { background: #10A37F; color: #fff; }
.btn-gpt:hover { background: #0e8c6d; }
.hero-art {
  max-width: 72rem; margin: -1rem auto 0; padding: 0 1.5rem;
}
.hero-art img {
  width: 100%;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  object-fit: cover;
}
.center { text-align: center; }
.pull { padding: 3.5rem 1.5rem; }
.cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  padding-bottom: 4rem;
}
.card {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
}
.card img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.card .pad { padding: 1.25rem; }
.card h3 { margin: 0; font-size: 1.25rem; }
.card p { margin: 0.5rem 0 0; font-size: 0.9rem; }
.explore { display: inline-block; margin-top: 0.75rem; color: var(--teal); font-weight: 600; font-size: 0.9rem; }
.page-hero {
  border-bottom: 1px solid var(--line);
}
.page-hero-inner {
  max-width: 72rem; margin: 0 auto;
  padding: 2.5rem 1.5rem;
  display: grid; gap: 2rem; align-items: end;
}
.kicker {
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--teal-deep); margin: 0;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin: 0.75rem 0 0; }
.page-hero .lede { max-width: 36rem; font-size: 1.15rem; margin: 1.25rem 0 0; }
.page-hero figure {
  overflow: hidden; border-radius: 16px; border: 1px solid var(--line); margin: 0;
}
.page-hero figure img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
article.prose { max-width: 48rem; margin: 0 auto; padding: 3.5rem 1.5rem; }
article.prose section { margin-top: 2.5rem; }
article.prose h2 { font-size: 1.85rem; margin: 0; }
article.prose p { margin: 1rem 0 0; }
.lead { font-size: 1.25rem; color: var(--ink); }
.box {
  border-radius: 16px; border: 1px solid var(--line); background: var(--surface);
  box-shadow: var(--shadow); padding: 1.5rem 2rem; margin-top: 2.5rem;
}
.note { border-radius: 16px; background: var(--paper-deep); padding: 1.25rem; }
.story { border-bottom: 1px solid var(--line); padding-bottom: 2.5rem; margin-bottom: 2.5rem; }
.story:last-of-type { border: 0; }
.idea-grid, .shop-grid, .vid-grid {
  display: grid; gap: 1.5rem; max-width: 72rem; margin: 0 auto; padding: 3.5rem 1.5rem;
}
.idea, .shop-card, .vid-card {
  border-radius: 16px; border: 1px solid var(--line); background: var(--surface);
  box-shadow: var(--shadow); padding: 1.5rem;
}
footer {
  margin-top: 2rem; background: var(--ink); color: var(--faint); text-align: center;
  padding: 3rem 1.5rem;
}
footer strong { color: #fff; font-family: "Playfair Display", serif; font-size: 1.25rem; }
.link { color: var(--teal); font-weight: 600; }
.signup { max-width: 36rem; margin: 0 auto 4rem; padding: 0 1.5rem; }
@media (min-width: 640px) {
  .cards { grid-template-columns: 1fr 1fr; }
  .idea-grid { grid-template-columns: 1fr 1fr; }
  .shop-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (min-width: 900px) {
  .vid-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (min-width: 1100px) {
  nav.desktop { display: flex; }
  .menu-btn { display: none; }
  nav.mobile { display: none !important; }
  .cards { grid-template-columns: repeat(4, 1fr); }
  .page-hero-inner { grid-template-columns: 1.05fr 0.95fr; }
}

.feed-heading { font-size: 1.35rem; margin: 2rem 0 0; }
.feed-updated { font-size: 0.85rem; color: var(--faint); margin: 0.35rem 0 0; }
.scam-feed { list-style: none; padding: 0; margin: 1.25rem 0 0; }
.scam-feed li {
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 1.25rem 1.5rem;
  margin-top: 1rem;
}
.scam-feed h3 { font-size: 1.2rem; margin: 0; }
.scam-feed h3 a { text-decoration: none; color: var(--ink); }
.scam-feed h3 a:hover { color: var(--teal); }
.feed-src { color: var(--faint); font-size: 0.85rem; font-weight: 400; margin-left: 0.5rem; }


/* social links in footer */
.socials { display: flex; flex-wrap: wrap; gap: 0.65rem 1rem; justify-content: center; margin: 1rem 0; }
.soc { color: var(--teal); font-weight: 600; text-decoration: none; }
.soc:hover { color: var(--teal-deep); text-decoration: underline; }
