/* ──────────────────────────────────────────
   INSIDE TPF — bento (keynote-level)
   ────────────────────────────────────────── */
.tpf-inside {
  padding: 0 24px 40px;
  max-width: 1240px;
  margin: 0 auto;
  color: #fff;
}

.ti-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 64px;
}

.ti-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
  text-transform: uppercase;
  padding: 7px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
}
.ti-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #ff4488;
  box-shadow: 0 0 12px #ff4488;
  animation: tiDotBlink 1.6s infinite ease-in-out;
}
@keyframes tiDotBlink { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.35; transform: scale(0.75); } }

.ti-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(32px, 5.4vw, 64px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0 0 18px;
  color: #fff;
}
.ti-title-accent {
  color: #fff;
}

.ti-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  margin: 0 auto;
  max-width: 520px;
  font-weight: 400;
}

/* ── BENTO GRID — minimal outline only ─── */
.ti-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 0;
}

.bento {
  position: relative;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
}

/* Hairlines */
.with-vline::after {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 1px; background: rgba(255,255,255,0.1);
}
.with-hline::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: rgba(255,255,255,0.1);
}

.bento-ico {
  width: 26px; height: 26px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  display: block;
  stroke-width: 1.6;
}

/* CHALLENGE cards */
.bento-challenge { grid-column: span 6; min-height: 320px; }

.big-num {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.95;
}
.bn-from, .bn-to {
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 600;
}
.bn-from { color: rgba(255,255,255,0.35); }
.bn-arrow {
  width: clamp(24px, 4vw, 42px);
  height: auto;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
}
.bn-to { color: #ffffff; }

.bento-foot {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.bento-foot h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 6px;
  color: #fff;
}
.bento-foot p {
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.55);
  margin: 0;
  font-weight: 400;
}

/* MILLY super-card — outline only */
.bento-milly {
  grid-column: span 12;
  padding: 36px;
}
.milly-head {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.milly-stamp {
  position: relative;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: #facc15;                            /* yellow */
  flex-shrink: 0;
  border: 1px solid rgba(250,204,21,0.85);
  border-radius: 6px;
  background: rgba(250,204,21,0.04);
}
.milly-pulse {
  position: absolute; inset: -4px;
  border-radius: 8px;
  border: 1px solid rgba(250,204,21,0.5);
  animation: millyPulse 2.4s infinite ease-out;
}
@keyframes millyPulse { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.4); opacity: 0; } }

.milly-pre {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.milly-name {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0 0 4px;
  color: #fff;
}
.milly-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

.milly-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.milly-sub {
  padding: 22px 0 0 24px;
  border-left: 1px solid rgba(255,255,255,0.2);
}
.milly-sub:first-child { padding-left: 0; border-left: none; }
.msub-ico {
  width: 22px; height: 22px;
  color: #2dd4bf;                            /* voice — teal */
  margin-bottom: 14px;
  display: block;
  stroke-width: 1.6;
}
.milly-sub:nth-child(2) .msub-ico { color: #4488ff; }  /* feed — blue */
.milly-sub:nth-child(3) .msub-ico { color: #c084ff; }  /* open-source — violet */
.milly-sub h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin: 0 0 5px;
  color: #fff;
}
.milly-sub p {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.55);
  margin: 0;
  font-weight: 400;
}

/* Scale card — only the $100K target gets the green pop */
.scale-card .bn-to { color: #22c55e; }

/* TONY Q&A — outline (now mirrors challenge cards) */
.bento-tony { grid-column: span 6; min-height: 320px; }

/* New header for the live Q&A card — pill + schedule, then bento-foot body */
.live-head {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: #fff;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 68, 136, 0.12);
  border: 1px solid rgba(255, 68, 136, 0.4);
}
.live-pill-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #ff4488;
  box-shadow: 0 0 10px #ff4488;
  animation: liveDot 1.2s infinite ease-in-out;
}
.live-schedule {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.62);
}

.live-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.live-meta .live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #ff4488;
  box-shadow: 0 0 10px #ff4488;
  animation: liveDot 1.2s infinite ease-in-out;
}
@keyframes liveDot { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.3; transform: scale(0.55); } }

.bento-h-xl {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(30px, 4.4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin: 0 0 18px;
  color: #fff;
}
.bento-p {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.62);
  margin: 0;
  max-width: 460px;
}

.bento-meta {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  gap: 28px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}
.bento-meta b {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}

/* LOUNGE */
.bento-lounge { grid-column: span 6; min-height: 320px; }

/* Tighter big-num for label cards (LIVE → 2×/MO, 24/7 → OPEN) */
.bento-tony .bn-from,
.bento-tony .bn-to,
.bento-lounge .bn-from,
.bento-lounge .bn-to {
  font-size: clamp(24px, 3.4vw, 42px);
  letter-spacing: -0.025em;
  font-weight: 600;
}

/* CLOSING QUOTE — no outline */
.bento-quote {
  grid-column: span 12;
  border: none;
  text-align: center;
  padding: 70px 24px 20px;
  align-items: center;
  justify-content: center;
}
.bento-quote:hover { transform: none; }
.bento-quote .quote-mark {
  font-family: 'Instrument Serif', serif;
  font-size: 96px;
  line-height: 0.7;
  color: rgba(255,255,255,0.18);
  margin-bottom: 6px;
}
.bento-quote p {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.45;
  color: rgba(255,255,255,0.78);
  margin: 0;
  max-width: 760px;
}
.bento-quote em {
  color: #22c55e;
  font-style: italic;
  font-weight: 500;
}

/* ── BENTO RESPONSIVE ──────────────── */
@media (max-width: 960px) {
  .ti-bento { grid-template-columns: repeat(6, 1fr); gap: 0; }
  .bento { padding: 36px 26px; }
  .bento-challenge { grid-column: span 6; min-height: 260px; }
  .bento-milly { grid-column: span 6; padding: 36px 28px; }
  .milly-trio { grid-template-columns: 1fr; gap: 18px; }
  .milly-sub { padding: 18px 0 0 0; border-left: none; border-top: 1px solid rgba(255,255,255,0.18); }
  .milly-sub:first-child { padding-top: 0; border-top: none; }
  .bento-tony { grid-column: span 6; min-height: 260px; }
  .bento-lounge { grid-column: span 6; min-height: 260px; }
  .bento-quote { grid-column: span 6; padding: 56px 16px 10px; }
  .bento-quote + .bento::after,
  .bento-quote::after { display: none; }
}

@media (max-width: 600px) {
  .tpf-inside { padding: 60px 16px 20px; }
  .ti-head { margin-bottom: 32px; }
  .ti-title { font-size: clamp(32px, 8vw, 42px); }
  .ti-eyebrow { font-size: 0.62rem; padding: 6px 12px; }
  .ti-sub { font-size: 0.9rem; }
  .ti-bento { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .bento { padding: 24px 16px; }
  .bento-ico { width: 22px; height: 22px; margin-bottom: 16px; }
  .bento-challenge { grid-column: span 1; min-height: 180px; }
  .bn-from, .bn-to { font-size: clamp(20px, 6vw, 28px); }
  .bn-arrow { width: 16px; }
  .bento-foot { margin-top: 16px; padding-top: 16px; }
  .bento-foot h3 { font-size: 0.95rem; }
  .bento-foot p { font-size: 0.75rem; }
  .bento-milly { grid-column: span 2; padding: 20px; }
  .milly-head { gap: 12px; padding-bottom: 16px; margin-bottom: 16px; }
  .milly-stamp { width: 40px; height: 40px; font-size: 20px; }
  .milly-name { font-size: 22px; }
  .milly-tag { font-size: 0.8rem; }
  .milly-trio { grid-template-columns: 1fr; gap: 16px; }
  .milly-sub { padding: 16px 0 0 0; border-top: 1px solid rgba(255,255,255,0.1); }
  .milly-sub:first-child { padding-top: 0; border-top: none; }
  .milly-sub h4 { font-size: 0.9rem; }
  .milly-sub p { font-size: 0.8rem; }
  .bento-tony { grid-column: span 1; min-height: 180px; }
  .bento-lounge { grid-column: span 1; min-height: 180px; }
  .bento-h-xl { font-size: clamp(24px, 7vw, 32px); }
  .bento-p { font-size: 0.85rem; }
  .bento-tony .bn-from, .bento-tony .bn-to,
  .bento-lounge .bn-from, .bento-lounge .bn-to {
    font-size: clamp(18px, 5.5vw, 26px);
  }
  .bento-meta { padding-top: 16px; gap: 16px; font-size: 0.7rem; }
  .bento-meta b { font-size: 0.95rem; }
  .bento-quote { grid-column: span 2; padding: 40px 12px 10px; }
  .bento-quote .quote-mark { font-size: 64px; }
  .bento-quote p { font-size: 1rem; }
}

/* ──────────────────────────────────────────
   PRICING — Discord Community
   Flat black cards. White button. Pro has interactive
   dark-glass jack cluster (matches home hero).
   ────────────────────────────────────────── */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 360px));
  gap: 24px;
  max-width: 780px;
  margin: 0 auto;
  justify-content: center;
}

.price-box {
  position: relative;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 3.25rem 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  text-align: left;
  min-height: 680px;
  overflow: hidden;
  color: #FFFFFF;
}

.price-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.7);
  border-color: rgba(255, 255, 255, 0.18);
}

.price-box * { position: relative; z-index: 10; }

/* ── Typography ────────────────────────── */
.tier-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: #FFFFFF;
  letter-spacing: 0.4em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.tier-price {
  font-family: 'Manrope', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.05em;
  margin-bottom: 1.25rem;
  color: #FFFFFF;
  -webkit-text-fill-color: #FFFFFF;
}

.tier-price span { font-size: 1.1rem; opacity: 0.45; }

.tier-subtext {
  font-family: 'Instrument Serif', serif;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.25rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(255, 255, 255, 0.3);
}

/* ── Features list ─────────────────────── */
.tier-features { list-style: none; margin: 0 0 2.25rem 0; padding: 0; flex: 1; }
.tier-features li {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.92);
}
.tier-features li svg { width: 13px; height: 13px; flex-shrink: 0; color: #FFFFFF; }

/* ── Button: translucent, white hairline border ── */
.tier-btn {
  position: relative;
  display: inline-block;
  align-self: flex-start;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.tier-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

/* ── PRO: Flat white card with subtle floating particles ── */
.price-box.pro-card {
  cursor: pointer;
  background: #fafafa;
  color: #0a0a0a;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35),
              inset 0 0 0 1px rgba(255,255,255,0.6);
}
.price-box.pro-card:hover {
  border-color: rgba(0, 0, 0, 0.16);
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.45),
              inset 0 0 0 1px rgba(255,255,255,0.8);
}

.pro-3d {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
  pointer-events: none;
}

.pro-card .tap-hint {
  position: absolute;
  bottom: 14px;
  right: 16px;
  z-index: 10;
  font-family: 'Inter', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.28);
  pointer-events: none;
  transition: color 0.4s ease;
}
.pro-card:hover .tap-hint { color: rgba(0,0,0,0.55); }

/* Pro card typography — flipped for white background */
.pro-card .tier-label { color: rgba(0,0,0,0.55); }
.pro-card .tier-price,
.pro-card > .tier-price { color: #0a0a0a; -webkit-text-fill-color: #0a0a0a; }
.pro-card .tier-price span { color: rgba(0,0,0,0.45); }
.pro-card .tier-subtext {
  color: rgba(0,0,0,0.7);
  border-left-color: rgba(0,0,0,0.25);
}
.pro-card .tier-features li { color: rgba(0,0,0,0.78); }
.pro-card .tier-features li svg { color: #0a0a0a; }
.pro-card .tier-btn {
  color: #fff;
  background: #0a0a0a;
  border: 1px solid #0a0a0a;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.pro-card .tier-btn:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #fff;
}

/* ── Mobile (larger, breathable cards) ───── */
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 460px;
  }
  .price-box {
    min-height: 520px;      /* a touch longer on mobile per design ask */
    padding: 2.75rem 1.65rem 2.25rem;
    border-radius: 20px;
  }
  .tier-price { font-size: 2.9rem; }
  .tier-label { font-size: 0.7rem; margin-bottom: 1.15rem; letter-spacing: 0.32em; }
  .tier-subtext { font-size: 0.95rem; margin-bottom: 2rem; padding-left: 0.9rem; line-height: 1.55; }
  .tier-features { margin-bottom: 2.25rem; }
  .tier-features li { font-size: 0.9rem; margin-bottom: 0.95rem; gap: 0.7rem; }
  .tier-features li svg { width: 13px; height: 13px; }
  .tier-btn {
    padding: 1.05rem 1.5rem;
    font-size: 0.78rem;
    text-align: center;
    align-self: stretch;
  }
}

@media (max-width: 480px) {
  .pricing-grid { gap: 16px; }
  .price-box { padding: 2.4rem 1.35rem 2rem; border-radius: 18px; min-height: 500px; }
  .tier-price { font-size: 2.55rem; }
  .tier-price span { font-size: 1rem; }
}
