/* ── Hero ── */
.product-hero {
  background: var(--warm);
  padding: clamp(40px, 5vw, 72px) 0 0;
  overflow: hidden;
}
.product-hero-inner {
  display: grid;
  grid-template-columns: 48% 52%;
  gap: 32px;
  align-items: center;
}
.product-hero-content { padding-bottom: clamp(48px, 6vw, 80px); }
.product-hero-img {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.product-hero-img img {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 48px rgba(35,61,77,0.15));
}

/* ── Video ── */
.video-section { background: var(--dark); padding: var(--sv) 0; position: relative; overflow: hidden; }
.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  background: #000;
  margin-top: 40px;
}
.video-embed iframe { position: absolute; top:0; left:0; width:100%; height:100%; border:none; }
.video-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(35,61,77,0.92) 0%, rgba(0,0,0,0.92) 100%);
  cursor: pointer;
}
.play-btn {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 8px 32px rgba(254,127,45,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.play-btn:hover { transform: scale(1.08); box-shadow: 0 12px 40px rgba(254,127,45,0.55); }
.play-btn svg { margin-left: 5px; }

/* ── Features interactive ── */
.features-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
  margin-top: 56px;
}
.feat-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.feat {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 14px 16px;
  border-radius: var(--r-md);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.18s;
  background: transparent;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
}
.feat:hover { background: var(--white); border-color: var(--border); }
.feat.active { background: var(--white); border-color: var(--orange); box-shadow: 0 2px 16px rgba(254,127,45,0.1); }
.feat.active h4 { color: var(--orange); }
.feat-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.18s;
}
.feat.active .feat-icon { transform: scale(1.08); }
.feat-icon svg {
  width: 22px; height: 22px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feat-icon--fill svg { fill: var(--white); stroke: none; }
.feat h4 { font-size: 15px; font-weight: 700; margin-bottom: 3px; color: var(--dark); transition: color 0.18s; }
.feat p  { font-size: 13px; color: var(--muted); line-height: 1.55; margin: 0; }

.feat-preview {
  position: sticky;
  top: 96px;
  display: flex;
  justify-content: center;
}

/* ── Live Mode spotlight ── */
.live-mode {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 72px;
  padding: 52px 56px;
  background: var(--dark);
  border-radius: var(--r-xl);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.live-mode::after {
  content: '⚡';
  position: absolute;
  right: 5%;
  bottom: -10%;
  font-size: 180px;
  opacity: 0.05;
  pointer-events: none;
}
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(254,127,45,0.15);
  border: 1px solid rgba(254,127,45,0.35);
  color: var(--orange);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.live-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.live-visual {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 16px;
  overflow: hidden;
  position: relative;
  height: 260px;
}
.live-post {
  display: flex;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--r-md);
  flex-shrink: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.live-post.entering {
  animation: slideFromTop 0.45s cubic-bezier(0.22,1,0.36,1) both;
}
.live-post.exiting {
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
}
@keyframes slideFromTop {
  from { opacity: 0; transform: translateY(-28px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.live-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: var(--black);
}
.live-post-body { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.5; }
.live-post-meta { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 3px; }

/* ── Plugins interactive ── */
.plugins-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 48px;
}
.plugin-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.plugin-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: var(--r-md);
  border: 1.5px solid transparent;
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: all 0.18s;
  font-family: var(--font-body);
  width: 100%;
}
.plugin-btn:hover {
  background: var(--white);
  border-color: var(--border);
}
.plugin-btn.active {
  background: var(--white);
  border-color: var(--orange);
  box-shadow: 0 2px 16px rgba(254,127,45,0.1);
}
.plugin-btn.active .plugin-btn-dot { background: var(--orange); }
.plugin-btn-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
  transition: background 0.18s;
}
.plugin-btn-dot--custom { background: var(--orange); }
.plugin-btn-label {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--dark);
  display: block;
  line-height: 1.3;
}
.plugin-btn-sub {
  font-size: 12px;
  color: var(--muted);
  display: block;
  margin-top: 2px;
  line-height: 1.4;
}
.plugin-btn.active .plugin-btn-label { color: var(--orange); }

/* ── Phone preview ── */
.plugin-preview {
  position: sticky;
  top: 96px;
  display: flex;
  justify-content: center;
}
.preview-phone {
  width: 300px;
  aspect-ratio: 9 / 19.5;
  border-radius: 40px;
  background: #0f0f0f;
  box-shadow:
    0 0 0 1.5px rgba(255,255,255,0.08),
    0 0 0 3px rgba(0,0,0,0.6),
    0 32px 72px rgba(0,0,0,0.22);
  overflow: hidden;
  position: relative;
}
.preview-screen {
  position: absolute;
  inset: 0;
  background: #f2f2f7;
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.preview-screen.active { display: flex; }
.preview-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.ps-nav {
  background: var(--dark);
  padding: 14px 16px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.ps-nav-title { color: var(--white); font-size: 13px; font-weight: 700; }
.ps-nav-back { color: var(--orange); font-size: 11px; }
.ps-body { flex: 1; overflow: hidden; padding: 12px; display: flex; flex-direction: column; gap: 8px; }

/* ── Row card ── */
.ps-row {
  background: var(--white);
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.ps-thumb {
  width: 36px; height: 36px;
  border-radius: 6px;
  flex-shrink: 0;
}
.ps-row-title { font-size: 11px; font-weight: 700; color: #111; margin-bottom: 3px; }
.ps-row-meta  { font-size: 10px; color: #888; }
.ps-row-body  { font-size: 10px; color: #555; line-height: 1.4; margin-top: 3px; }

/* ── Banner ad placeholder ── */
.ps-ad {
  background: #e8eef2;
  border-radius: 6px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #aaa;
  border: 1px dashed #ccc;
  letter-spacing: 0.05em;
  margin: 0 0 4px;
}

/* ── Pill tags ── */
.ps-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.ps-tag {
  padding: 3px 9px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
  background: #e8f5e9;
  color: #2e7d32;
}
.ps-tag--orange { background: #fff3e0; color: #e65100; }
.ps-tag--blue   { background: #e3f2fd; color: #1565c0; }

/* ── Grid cards ── */
.ps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.ps-grid-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
}
.ps-grid-img { height: 52px; }
.ps-grid-label { font-size: 10px; font-weight: 600; color: #111; padding: 6px 8px 5px; }
.ps-grid-price { font-size: 10px; color: var(--orange); padding: 0 8px 6px; font-weight: 700; }

/* ── Lock screen ── */
.ps-lock {
  background: var(--dark);
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  text-align: center;
}
.ps-lock-icon { font-size: 32px; }
.ps-lock-title { color: var(--white); font-size: 13px; font-weight: 700; }
.ps-lock-body  { color: rgba(255,255,255,0.55); font-size: 11px; line-height: 1.5; }
.ps-lock-btn {
  background: var(--orange);
  color: var(--black);
  border-radius: 6px;
  padding: 8px 18px;
  font-size: 11px;
  font-weight: 700;
  margin-top: 6px;
}

/* ── Custom CTA screen ── */
.ps-custom {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  text-align: center;
  background: var(--warm);
}
.ps-custom-icon { font-size: 36px; }
.ps-custom-title { font-size: 13px; font-weight: 700; color: var(--dark); }
.ps-custom-body  { font-size: 11px; color: var(--muted); line-height: 1.5; }
.ps-custom-btn {
  background: var(--orange);
  color: var(--black);
  border-radius: 6px;
  padding: 8px 18px;
  font-size: 11px;
  font-weight: 700;
  margin-top: 6px;
}

.plugins-cta {
  margin-top: 28px;
  padding: 20px 28px;
  background: var(--white);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: 15px;
}

/* ── Diff table ── */
.diff-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 48px;
}
.diff-col { padding: 36px 32px; border-right: 1px solid var(--border); }
.diff-col:last-child { border-right: none; }
.diff-col--us { background: var(--dark); color: var(--white); }
.diff-head { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 20px; display: block; }
.diff-col--us .diff-head { color: var(--yellow); }
.diff-col:not(.diff-col--us) .diff-head { color: var(--muted); }
.diff-list { display: flex; flex-direction: column; gap: 10px; }
.diff-item { font-size: 14px; display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.diff-col--us .diff-item { color: rgba(255,255,255,0.8); }
.diff-col:not(.diff-col--us) .diff-item { color: var(--muted); }
.diff-check { color: var(--sage); font-size: 13px; flex-shrink: 0; margin-top: 1px; }
.diff-x { color: rgba(0,0,0,0.25); font-size: 13px; flex-shrink: 0; margin-top: 1px; }

/* ── Community cards ── */
.community-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.community-card {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
}
.community-initial {
  width: 64px; height: 64px;
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.community-initial img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.community-name { font-weight: 700; font-size: 17px; margin-bottom: 5px; }
.community-desc { font-size: 13px; color: var(--muted); line-height: 1.5; margin-bottom: 20px; }
.store-links { display: flex; flex-direction: column; gap: 8px; }
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  background: #111;
  color: var(--white);
  border-radius: 8px;
  font-family: var(--font-body);
  text-decoration: none;
  transition: opacity 0.18s;
}
.store-btn:hover { opacity: 0.75; }
.store-btn svg { width: 18px; height: 18px; fill: var(--white); flex-shrink: 0; }
.store-btn-sub { display: block; font-size: 9px; font-weight: 400; opacity: 0.65; text-transform: uppercase; letter-spacing: 0.05em; line-height: 1; }
.store-btn-name { display: block; font-size: 13px; font-weight: 700; line-height: 1.3; }
.store-btn--coming {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--muted);
  cursor: default;
}
.store-btn--coming svg { fill: var(--muted); }
.store-btn--coming:hover { opacity: 1; }

/* ── Testimonial quote ── */
.testimonial-quote {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: var(--sv) 0;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 96px;
  font-weight: 800;
  color: var(--yellow);
  line-height: 0.7;
  display: block;
  margin-bottom: 24px;
  opacity: 0.7;
}
.quote-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 38px);
  font-style: italic;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 32px;
}
.quote-attr { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.quote-name { font-size: 15px; font-weight: 600; color: var(--white); }
.quote-role { font-size: 13px; color: rgba(255,255,255,0.5); }

@media (max-width: 900px) {
  .product-hero { padding-bottom: 72px; }
  .product-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .product-hero-content { padding-bottom: 0; }
  .product-hero-content .btn { margin: 0 auto; }
  .product-hero-img { margin-top: 40px; }
  .features-layout { grid-template-columns: 1fr; gap: 0; }
  .feat-preview { position: static; }
  .feat-list { display: none; }
  .plugins-layout { grid-template-columns: 1fr; gap: 0; }
  .plugin-preview { position: static; }
  .plugin-list { display: none; }
  .feat-mobile-select,
  .plugin-mobile-select {
    display: block;
    width: 100%;
    padding: 13px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    background: var(--white);
    border: 2px solid var(--orange);
    border-radius: var(--r-md);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23FE7F2D' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
    margin-bottom: 16px;
  }
  .live-mode { grid-template-columns: 1fr; padding: 36px 28px; gap: 36px; }
  .diff-row { grid-template-columns: 1fr; }
  .diff-col { border-right: none; border-bottom: 1px solid var(--border); }
  .diff-col:last-child { border-bottom: none; }
  .community-cards { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .plugins-layout { grid-template-columns: 1fr; gap: 0; }
  .plugin-preview { position: static; margin-top: 16px; }
  .plugin-list {
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 6px;
    padding-bottom: 8px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .plugin-list::-webkit-scrollbar { display: none; }
  .plugin-btn {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 10px;
    min-width: 72px;
    flex-shrink: 0;
    scroll-snap-align: start;
    gap: 6px;
  }
  .plugin-btn-dot { display: none; }
  .plugin-btn-label { font-size: 11px; line-height: 1.3; }
  .plugin-btn-sub { display: none; }
  /* Tighten gap between CTA section and stats bar */
  [data-screen-label="CTA"].sec { padding-bottom: 24px; }
}
