/* Blendy: Paint & Seek — playblendy.com */
@import url("https://fonts.googleapis.com/css2?family=Baloo+2:wght@700;800&family=Nunito:wght@400;600;700;800;900&display=swap");

:root {
  color-scheme: dark;
  --bg: #000;
  --bg-elevated: #111;
  --bg-card: rgba(255, 255, 255, 0.04);
  --text: #fff;
  --text-soft: rgba(255, 255, 255, 0.72);
  --yellow: #ffd43b;
  --yellow-glow: rgba(255, 212, 59, 0.42);
  --blue: #1ea7ff;
  --blue-glow: rgba(30, 167, 255, 0.35);
  --purple: #9b6dff;
  --purple-glow: rgba(155, 109, 255, 0.35);
  --border-soft: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(255, 212, 59, 0.18);
  --radius: 22px;
  --radius-phone: 28px;
  --phone-max: 320px;
  --font-display: "Baloo 2", "Nunito", -apple-system, sans-serif;
  --font-body: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-height: 64px;
  --mobile-cta-height: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

body.has-mobile-cta {
  padding-bottom: calc(var(--mobile-cta-height) + env(safe-area-inset-bottom, 0px));
}

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

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 8vw, 3.2rem);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.55rem, 5.5vw, 2.35rem);
  margin-bottom: 0.55em;
}

h3 {
  font-size: 1.15rem;
}

p {
  margin-bottom: 1em;
}

a {
  color: var(--blue);
}

.yellow {
  color: var(--yellow);
  text-shadow: 0 0 28px var(--yellow-glow);
}

.section {
  padding: 64px 0;
  position: relative;
}

.section-alt {
  background:
    radial-gradient(circle at 20% 0%, rgba(30, 167, 255, 0.07), transparent 42%),
    radial-gradient(circle at 80% 100%, rgba(155, 109, 255, 0.08), transparent 38%),
    var(--bg-elevated);
}

.section-intro {
  color: var(--text-soft);
  max-width: 36em;
  font-weight: 600;
}

.kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  background: rgba(255, 212, 59, 0.14);
  color: var(--yellow);
  border: 1px solid rgba(255, 212, 59, 0.28);
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 0.82rem;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---------- Background decor ---------- */
.page-shell {
  position: relative;
  isolation: isolate;
}

.page-decor {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.star,
.splat {
  position: absolute;
  opacity: 0.85;
}

.star {
  color: var(--yellow);
  font-size: 1rem;
  text-shadow: 0 0 18px var(--yellow-glow);
}

.splat {
  width: 3rem;
  height: 1rem;
  border-radius: 999px;
  transform: rotate(-18deg);
  filter: blur(0.2px);
}

.splat-blue {
  background: linear-gradient(90deg, #1ea7ff, #5cc4ff);
}

.splat-purple {
  background: linear-gradient(90deg, #9b6dff, #c49bff);
}

.star-1 { top: 8%; left: 6%; font-size: 1.3rem; }
.star-2 { top: 16%; right: 8%; font-size: 0.85rem; }
.star-3 { top: 42%; left: 4%; font-size: 0.95rem; }
.star-4 { top: 68%; right: 6%; font-size: 1.15rem; }
.star-5 { bottom: 22%; left: 10%; font-size: 0.8rem; }
.star-6 { bottom: 10%; right: 12%; font-size: 1rem; }

.splat-1 { top: 12%; right: 5%; transform: rotate(24deg); }
.splat-2 { top: 30%; left: 3%; transform: rotate(-32deg); width: 2.2rem; }
.splat-3 { top: 55%; right: 4%; transform: rotate(12deg); width: 2.6rem; }
.splat-4 { bottom: 28%; left: 5%; transform: rotate(-8deg); }

/* ---------- Header ---------- */
main {
  position: relative;
  z-index: 1;
}

.site-header {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-soft);
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.brand span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a {
  color: var(--text-soft);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
}

.nav a:hover {
  color: var(--text);
}

.nav .btn {
  font-size: 0.88rem;
  padding: 10px 16px;
  min-height: 40px;
}

@media (max-width: 720px) {
  .nav a:not(.btn) {
    display: none;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  background: var(--yellow);
  color: #111;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 1rem;
  min-height: 48px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 10px 28px rgba(255, 212, 59, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 14px 34px rgba(255, 212, 59, 0.36);
}

.btn-block {
  width: 100%;
}

.appstore-badge {
  display: inline-block;
}

.appstore-badge img {
  height: 52px;
  width: auto;
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 212, 59, 0.12), transparent 48%),
    radial-gradient(circle at 85% 20%, rgba(155, 109, 255, 0.14), transparent 36%),
    radial-gradient(circle at 10% 70%, rgba(30, 167, 255, 0.12), transparent 34%),
    var(--bg);
  padding: 28px 0 0;
  overflow: hidden;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: end;
}

.hero-copy {
  padding-bottom: 56px;
}

.hero-icon {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 40px rgba(255, 212, 59, 0.18);
  margin-bottom: 20px;
}

.hero h1 {
  margin-bottom: 14px;
}

.hero .tagline {
  font-size: 1.08rem;
  margin-bottom: 22px;
  max-width: 34em;
  color: var(--text-soft);
  font-weight: 600;
  line-height: 1.55;
}

.hero .tagline strong {
  color: var(--text);
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.hero-meta {
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.35;
}

.hero-meta strong,
.hero-fineprint strong {
  color: var(--yellow);
}

.hero-fineprint {
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0;
}

.hero-phone {
  align-self: end;
}

.phone-frame {
  position: relative;
  max-width: var(--phone-max);
  margin: 0 auto;
  border-radius: var(--radius-phone);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 212, 59, 0.12),
    0 0 48px rgba(255, 212, 59, 0.18),
    0 24px 60px rgba(0, 0, 0, 0.55);
}

.phone-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.phone-frame img {
  width: 100%;
}

@media (max-width: 820px) {
  .hero {
    padding-top: 12px;
  }

  .hero .wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-copy {
    padding-bottom: 0;
    text-align: center;
  }

  .hero-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-fineprint {
    text-align: center;
  }

  .hero-phone {
    order: -1;
    margin-top: 0;
  }

  .phone-frame {
    max-width: min(72vw, 300px);
  }
}

/* ---------- Social proof strip ---------- */
.proof {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 12px 0;
}

.proof-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 0 8px;
}

.proof-scroll::-webkit-scrollbar {
  display: none;
}

.proof-chip {
  flex: 0 0 auto;
  scroll-snap-align: start;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 8px 14px;
  white-space: nowrap;
}

@media (min-width: 900px) {
  .proof-scroll {
    flex-wrap: wrap;
    justify-content: center;
    overflow: visible;
  }
}

/* ---------- Screenshots ---------- */
.shots-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-top: 28px;
  padding: 8px 4px 16px;
}

.shots-scroll::-webkit-scrollbar {
  display: none;
}

.shots-scroll figure {
  flex: 0 0 min(78vw, 260px);
  scroll-snap-align: center;
  margin: 0;
}

.shots-scroll .phone-frame {
  max-width: none;
}

.shots-scroll figcaption {
  font-size: 0.84rem;
  font-weight: 800;
  text-align: center;
  margin-top: 10px;
  color: var(--text-soft);
  font-family: var(--font-display);
}

.shots-hint {
  margin-top: 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 700;
  text-align: center;
}

@media (max-width: 899px) {
  #screenshots .wrap {
    padding-right: 0;
  }

  .shots-scroll {
    margin-right: -16px;
    padding-right: 16px;
  }
}

@media (min-width: 900px) {
  .shots-scroll {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    overflow: visible;
    padding: 0;
    gap: 16px;
  }

  .shots-scroll figure {
    flex: initial;
  }

  .shots-hint {
    display: none;
  }
}

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.step {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: 0 0 32px rgba(255, 212, 59, 0.04);
}

.step .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 14px;
  color: #111;
}

.step:nth-child(1) .num {
  background: var(--blue);
  box-shadow: 0 0 24px var(--blue-glow);
}

.step:nth-child(2) .num {
  background: var(--yellow);
  box-shadow: 0 0 24px var(--yellow-glow);
}

.step:nth-child(3) .num {
  background: var(--purple);
  box-shadow: 0 0 24px var(--purple-glow);
}

.step h3 {
  margin-bottom: 8px;
}

.step p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-soft);
  font-weight: 600;
}

@media (max-width: 820px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* ---------- Feature list ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  margin-top: 22px;
  padding-left: 0;
  list-style: none;
}

.features li {
  padding-left: 28px;
  position: relative;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-soft);
}

.features li::before {
  content: "★";
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-size: 0.8rem;
  top: 0.15em;
}

.features li strong {
  color: var(--text);
}

@media (max-width: 640px) {
  .features {
    grid-template-columns: 1fr;
  }
}

/* ---------- Guides ---------- */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.guide-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 22px 20px;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.guide-card:hover {
  border-color: rgba(255, 212, 59, 0.28);
  box-shadow: 0 0 32px rgba(255, 212, 59, 0.08);
}

.guide-card .emoji {
  font-size: 1.75rem;
  margin-bottom: 10px;
}

.guide-card h3 {
  margin-bottom: 8px;
}

.guide-card p {
  font-size: 0.92rem;
  margin-bottom: 12px;
  color: var(--text-soft);
  font-weight: 600;
}

.guide-card .more {
  margin-top: auto;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--yellow);
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .guide-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- FAQ ---------- */
.faq-list {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 16px 20px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  list-style: none;
  position: relative;
  padding-right: 48px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--yellow);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item .answer {
  padding: 0 20px 18px;
  color: var(--text-soft);
  font-weight: 600;
}

.faq-item .answer p {
  margin-bottom: 0.6em;
}

.learn-more {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--yellow);
}

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 212, 59, 0.16), transparent 58%),
    rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 212, 59, 0.16);
  border-bottom: 1px solid rgba(255, 212, 59, 0.16);
  text-align: center;
}

.cta-band .btn-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.cta-band .subtle {
  font-weight: 700;
  margin-top: 14px;
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* ---------- Mobile sticky CTA ---------- */
.mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-soft);
}

@media (max-width: 820px) {
  .mobile-cta {
    display: block;
  }
}

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  z-index: 1;
  background: var(--bg);
  border-top: 1px solid var(--border-soft);
  padding: 40px 0 28px;
}

.site-footer a {
  color: var(--text-soft);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--text);
}

.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 24px;
}

.footer-cols h3 {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: var(--yellow);
}

.footer-cols ul {
  list-style: none;
}

.footer-cols li {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.footer-brand span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
}

.footer-cols p {
  font-size: 0.92rem;
  color: var(--text-soft);
  font-weight: 600;
  max-width: 28em;
}

.footer-legal {
  border-top: 1px solid var(--border-soft);
  padding-top: 16px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
}

@media (max-width: 720px) {
  .footer-cols {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section {
    padding: 48px 0;
  }

  .wrap {
    padding: 0 16px;
  }
}

/* ---------- Guide article pages ---------- */
.article-hero {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 212, 59, 0.14), transparent 52%),
    var(--bg-elevated);
  border-bottom: 1px solid var(--border-soft);
  padding: 48px 0;
}

.breadcrumb {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-soft);
}

.breadcrumb a {
  color: var(--text-soft);
}

.article-hero .meta {
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 12px;
  color: var(--text-soft);
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 20px;
  color: var(--text-soft);
  font-weight: 600;
}

.article-body h2 {
  color: var(--text);
}

.article-body ul,
.article-body ol {
  margin: 0 0 1em 1.4em;
}

.article-body li {
  margin-bottom: 0.4em;
}

.article-shot {
  border-radius: var(--radius-phone);
  box-shadow:
    0 0 0 1px rgba(255, 212, 59, 0.12),
    0 0 48px rgba(255, 212, 59, 0.16);
  max-width: 280px;
  margin: 24px auto;
}

.tip-box {
  background: var(--bg-card);
  border: 1px solid rgba(255, 212, 59, 0.2);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin: 24px 0;
}

.tip-box h3 {
  margin-bottom: 8px;
  color: var(--yellow);
}

.tip-box p:last-child {
  margin-bottom: 0;
}

.article-cta {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 212, 59, 0.12), transparent 55%),
    var(--bg-card);
  border: 1px solid rgba(255, 212, 59, 0.18);
  border-radius: var(--radius);
  padding: 28px 24px;
  margin: 36px 0 0;
  text-align: center;
}

.article-cta h2 {
  margin-top: 0;
}

.article-cta .btn-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.related {
  margin-top: 40px;
}

.related ul {
  list-style: none;
  margin-left: 0;
}

.related li {
  margin-bottom: 10px;
  font-weight: 700;
}

.related a {
  color: var(--yellow);
}

.center-block {
  text-align: center;
}

.center-block .section-intro {
  margin-left: auto;
  margin-right: auto;
}
