:root {
  --bg: #0a0a0f;
  --bg-card: #131318;
  --border: #232330;
  --text: #f2f2f5;
  --text-dim: #9a9aa8;
  --text-faint: #5c5c6b;
  --cyan: #22d3ee;
  --blue: #3b82f6;
  --green: #34d399;
  --radius: 16px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

/* ---------- Hero ---------- */
.hero {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 24px 32px;
  text-align: center;
}

.pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 999px;
}

.pill-brand {
  color: var(--green);
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.35);
}

.hero h1 {
  font-size: 42px;
  line-height: 1.15;
  font-weight: 800;
  margin: 20px 0 12px;
  letter-spacing: -0.01em;
}

.gradient-text {
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subhead {
  color: var(--text-dim);
  font-size: 15px;
  margin: 0;
}

/* ---------- Tiles ---------- */
.tiles {
  max-width: 1080px;
  margin: 24px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tile {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.tile:hover {
  transform: translateY(-3px);
  border-color: #34455c;
}

.tile-visual {
  position: relative;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-discord { background: radial-gradient(circle at 50% 45%, #1a2a52 0%, #0d0f1c 75%); }
.visual-bot { background: radial-gradient(circle at 50% 45%, #0e2b33 0%, #0a1418 75%); }
.visual-calendar { background: radial-gradient(circle at 50% 45%, #0a2b2a 0%, #0a1414 75%); }

.glow-icon {
  width: 88px;
  height: 88px;
}

.visual-discord .glow-icon { color: #6a8bff; filter: drop-shadow(0 0 18px #4d6bff); }
.visual-bot .glow-icon { color: #2dd4d4; filter: drop-shadow(0 0 18px #22d3ee); }
.visual-calendar .glow-icon { color: #2ee6c4; filter: drop-shadow(0 0 18px #2ee6c4); }

.icon-photo {
  width: 190px;
  height: 190px;
  object-fit: contain;
  mix-blend-mode: lighten;
  -webkit-mask-image: radial-gradient(circle, black 40%, transparent 68%);
  mask-image: radial-gradient(circle, black 40%, transparent 68%);
}

.icon-accent {
  position: absolute;
  width: 34px;
  height: 34px;
}

.icon-gift {
  color: #e04dc0;
  filter: drop-shadow(0 0 10px #e04dc0);
  left: calc(50% - 42px);
  top: calc(50% + 26px);
}

.icon-checklist {
  color: #2ee6c4;
  filter: drop-shadow(0 0 10px #2ee6c4);
  left: calc(50% + 10px);
  top: calc(50% + 26px);
}

.pill-free {
  position: absolute;
  top: 14px;
  left: 14px;
  color: #06231d;
  background: #2ee6c4;
  box-shadow: 0 0 14px rgba(46, 230, 196, 0.5);
}

.pill-popular {
  position: absolute;
  top: 14px;
  left: 14px;
  color: #fff;
  background: #2f6bf6;
  box-shadow: 0 0 14px rgba(47, 107, 246, 0.55);
}

.tile-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.tile-body h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}

.tile-body p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-dim);
  flex: 1;
}

.price {
  margin-top: 10px;
  font-weight: 700;
  font-size: 14px;
}

.price-sub {
  font-weight: 400;
  color: var(--text-faint);
  font-size: 13px;
}

/* ---------- Social proof ---------- */
.social-proof {
  max-width: 1080px;
  margin: 72px auto 0;
  padding: 0 24px;
  text-align: center;
}

.social-proof h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 28px;
}

.progress-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  text-align: left;
}

.progress-card {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.progress-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.progress-card figcaption {
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

/* ---------- Footer top / FAQ ---------- */
.footer-top {
  max-width: 1080px;
  margin: 80px auto 0;
  padding: 0 24px;
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}

.logo {
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--cyan);
  font-size: 14px;
}

.footer-nav nav {
  display: flex;
  gap: 24px;
  font-size: 13px;
  color: var(--text-dim);
}

.faq {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.chev { color: var(--text-faint); transition: transform 0.2s ease; }

.faq-item.open .chev { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease, padding 0.2s ease;
  padding: 0 18px;
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.6;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 18px 16px;
}

/* ---------- Footer ---------- */
.site-footer {
  max-width: 1080px;
  margin: 48px auto 0;
  padding: 24px 24px 48px;
  text-align: center;
}

.site-footer nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 14px;
}

.copyright {
  font-size: 11px;
  color: var(--text-faint);
  margin: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .tiles { grid-template-columns: 1fr; }
  .progress-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 30px; }
  .footer-nav { flex-direction: column; gap: 14px; align-items: flex-start; }
}
