/*=============== PORCHTALK SHOWCASE ===============*/
.porchtalk {
  background: #070508;
  position: relative;
  overflow: hidden;
}
.porchtalk::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.09) 0%, transparent 60%);
  top: -200px; left: -200px;
  pointer-events: none;
}
.porchtalk::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.07) 0%, transparent 60%);
  bottom: -150px; right: -100px;
  pointer-events: none;
}

.porchtalk__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

.porchtalk__product-label {
  font-family: var(--f-ui);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.75rem;
}
.porchtalk__wordmark {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 600;
  font-style: normal;
  color: #FAF6F0;
  line-height: 1;
  margin-bottom: 1.25rem;
  font-variation-settings: 'opsz' 72, 'WONK' 1;
  letter-spacing: -0.025em;
}
.porchtalk__tagline {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: normal;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.75rem;
  line-height: 1.5;
  font-variation-settings: 'opsz' 18;
}
.porchtalk__desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.88;
  margin-bottom: 2rem;
  max-width: 460px;
}
.porchtalk__pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.porchtalk__pillar {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 0.85rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.porchtalk__pillar-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.porchtalk__pillar-text {
  font-family: var(--f-ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.porchtalk__cta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

/* Ember-coloured CTA for PorchTalk */
.btn--ember {
  background: var(--accent);
  color: #fff;
  font-family: var(--f-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.btn--ember:hover {
  background: var(--accent-hi);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(14, 165, 233, 0.3);
}

.btn--ghost-ember {
  background: transparent;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.15);
  font-family: var(--f-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.btn--ghost-ember:hover { border-color: rgba(255,255,255,0.35); color: rgba(255,255,255,0.85); transform: translateY(-2px); }

/* Phone mockup */
.porchtalk__right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-mockup { width: 275px; position: relative; }
.phone-frame {
  width: 275px;
  background: #161014;
  border-radius: 38px;
  padding: 12px;
  box-shadow: 0 50px 100px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.07);
}
.phone-notch {
  width: 80px; height: 24px;
  background: #161014;
  border-radius: 0 0 16px 16px;
  margin: 0 auto 6px;
}
.phone-screen {
  background: #0D0A14;
  border-radius: 28px;
  overflow: hidden;
  min-height: 510px;
  display: flex;
  flex-direction: column;
}

.pt-status {
  padding: 0.6rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0D0A14;
}
.pt-time {
  font-family: var(--f-ui);
  font-size: 0.6rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}
.pt-signal { display: flex; gap: 2px; align-items: flex-end; }
.pt-signal span { display: block; width: 3px; background: rgba(255,255,255,0.5); border-radius: 1px; }
.pt-signal span:nth-child(1) { height: 4px; }
.pt-signal span:nth-child(2) { height: 7px; }
.pt-signal span:nth-child(3) { height: 10px; }

.pt-header {
  padding: 0.9rem 1.1rem 0.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pt-logo {
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 600;
  font-style: normal;
  color: #fff;
}
.pt-logo-accent { color: var(--accent-hi); }
.pt-cat-icon { font-size: 1rem; color: var(--accent); display: block; margin-bottom: 0.28rem; }
.pt-post-time {
  font-family: var(--f-ui);
  font-size: 0.48rem;
  font-weight: 400;
  color: rgba(255,255,255,0.25);
  margin-left: auto;
}
.pt-anon-pill {
  font-family: var(--f-ui);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(14, 165, 233, 0.85);
  padding: 0.22rem 0.55rem;
  border-radius: 20px;
}
.pt-sub {
  padding: 0 1.1rem 0.85rem;
  font-size: 0.68rem;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
}
.pt-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
  padding: 0 0.9rem 0.9rem;
}
.pt-cat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 0.5rem 0.3rem;
  text-align: center;
  transition: all 0.2s;
}
.pt-cat:hover {
  background: rgba(14, 165, 233, 0.15);
  border-color: rgba(14, 165, 233, 0.35);
}
.pt-cat-emoji { font-size: 1.15rem; display: block; margin-bottom: 0.28rem; }
.pt-cat-name {
  font-family: var(--f-ui);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.pt-rule { border: none; height: 1px; background: rgba(255,255,255,0.05); margin: 0 0.9rem; }

.pt-post {
  padding: 0.9rem 1.1rem;
  flex: 1;
}
.pt-post-meta {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.45rem;
}
.pt-post-who {
  font-family: var(--f-ui);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.pt-post-tag {
  font-family: var(--f-ui);
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(14, 165, 233, 0.15);
  padding: 0.12rem 0.4rem;
  border-radius: 10px;
}
.pt-post-text {
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
  margin-bottom: 0.65rem;
}
.pt-post-replies {
  font-size: 0.62rem;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.pt-compose {
  padding: 0.65rem 1.1rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.pt-compose-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  padding: 0.5rem 0.75rem;
  font-size: 0.62rem;
  color: rgba(255,255,255,0.35);
  font-family: var(--f-body);
}
.pt-send-btn {
  width: 30px; height: 30px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 0.65rem;
  flex-shrink: 0;
}
