:root {
  --bg: #08111f;
  --bg-soft: #101d34;
  --panel: rgba(12, 23, 42, 0.88);
  --panel-strong: #12213d;
  --text: #eef4ff;
  --muted: #9fb0cf;
  --line: rgba(255, 255, 255, 0.09);
  --gold: #ffc857;
  --gold-deep: #ffb000;
  --green: #36d399;
  --red: #ff6b6b;
  --blue: #6aa8ff;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --max-width: 1180px;
}

.home-page {
  --bg: #0b0b0d;
  --bg-soft: #17181c;
  --panel: rgba(18, 18, 21, 0.9);
  --panel-strong: #1f2025;
  --text: #f0ede6;
  --muted: #b8afa4;
  --line: rgba(216, 154, 85, 0.14);
  --gold: #d89a55;
  --gold-deep: #b87333;
  --green: #6eb889;
  --red: #cf7466;
  --blue: #c7cbc6;
  --shadow: 0 30px 72px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 200, 87, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(106, 168, 255, 0.16), transparent 24%),
    linear-gradient(180deg, #08101b 0%, #07101e 45%, #050c16 100%);
  color: var(--text);
  min-height: 100vh;
  position: relative;
}

.home-page {
  background:
    radial-gradient(circle at top left, rgba(216, 154, 85, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(240, 237, 230, 0.08), transparent 24%),
    linear-gradient(180deg, #111216 0%, #121318 44%, #0b0b0d 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 72%);
  opacity: 0.35;
}

.home-page::before {
  background:
    linear-gradient(rgba(216, 154, 85, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 154, 85, 0.03) 1px, transparent 1px);
  opacity: 0.22;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(6, 12, 22, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.home-page .site-header {
  background: rgba(11, 11, 13, 0.76);
  border-bottom-color: rgba(216, 154, 85, 0.12);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: auto;
  max-width: 100%;
  flex-shrink: 0;
  line-height: 0;
  transition: transform 160ms ease;
}

.brand:hover,
.brand:focus-visible {
  transform: translateY(-1px);
}

.brand-logo {
  width: auto;
  max-width: 100%;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(255, 176, 0, 0.22));
}

.home-page .brand-logo {
  height: 62px;
  filter: drop-shadow(0 12px 28px rgba(184, 115, 51, 0.18));
}

.brand-copy small,
.eyebrow,
.meta-pill,
.kicker {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand-copy strong {
  display: block;
  font-size: 1.05rem;
}

.brand-copy small {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--muted);
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.hero {
  padding: 4.8rem 0 3.4rem;
}

.hero-grid,
.feature-grid,
.archive-grid,
.cta-grid,
.two-col,
.action-grid {
  display: grid;
  gap: 1.5rem;
}

.hero-grid {
  grid-template-columns: 1.2fr 0.95fr;
  align-items: center;
}

.hero-copy {
  max-width: 640px;
}

.action-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-copy h1,
.page-hero h1 {
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  line-height: 0.95;
  margin: 0.5rem 0 1rem;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  max-width: 11ch;
}

.hero-copy p,
.page-hero p,
.card p,
.section-copy p,
.list li,
.timeline li,
.archive-note,
.footer-copy,
.input-row label,
.table-note {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy p {
  max-width: 60ch;
  font-size: 1.05rem;
}

.hero-note {
  margin-top: 1rem;
  max-width: 60ch;
  font-size: 0.96rem;
  color: var(--muted);
}

.eyebrow {
  color: var(--gold);
}

.hero-pills,
.stat-row,
.market-actions,
.price-points,
.filter-row,
.archive-tabs,
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-pills {
  margin: 1.5rem 0;
}

.meta-pill,
.badge,
.stat-chip,
.tag {
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  letter-spacing: 0.02em;
  text-transform: none;
}

.badge.gold,
.tab-button.active,
.filter-button.active {
  background: linear-gradient(135deg, rgba(255, 200, 87, 0.22), rgba(255, 176, 0, 0.15));
  border-color: rgba(255, 200, 87, 0.5);
}

.cta-row,
.price-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.premium-checkout-form {
  margin: 0;
}

.premium-checkout-form .button {
  width: 100%;
}

.button,
button.button,
a.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 52px;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible,
.card-link:hover,
.card-link:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, #d89a55 0%, #b87333 100%);
  color: #241200;
  box-shadow: 0 18px 40px rgba(184, 115, 51, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.button-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text);
}

.panel,
.card,
.video-card,
.market-card,
.stock-card,
.archive-table,
.pricing-card,
.newsletter-card,
.callout,
.timeline,
.summary-card,
.disclaimer,
.empty-state {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.video-card {
  padding: 1.35rem;
  background: linear-gradient(180deg, rgba(18, 33, 61, 0.96), rgba(10, 19, 35, 0.92));
}

.home-page .video-card {
  border-color: rgba(216, 154, 85, 0.16);
  background: linear-gradient(180deg, rgba(30, 27, 29, 0.96), rgba(15, 15, 17, 0.94));
}

.video-shell {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 24px;
  min-height: 440px;
  background:
    linear-gradient(155deg, rgba(255, 200, 87, 0.16), rgba(9, 16, 31, 0.1)),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 50%),
    linear-gradient(180deg, #17243d 0%, #0d172a 100%);
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 1.4rem;
  gap: 1rem;
}

.home-page .video-shell {
  background:
    linear-gradient(145deg, rgba(216, 154, 85, 0.14), rgba(17, 18, 22, 0.1)),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 50%),
    linear-gradient(180deg, #2a1f1b 0%, #141519 100%);
}

.video-shell::before {
  content: "Welcome video";
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  z-index: 2;
}

.home-page .video-shell::before {
  content: "P2B overview";
  background: rgba(13, 13, 15, 0.62);
  border: 1px solid rgba(216, 154, 85, 0.2);
}

.video-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 16, 31, 0.02) 0%, rgba(9, 16, 31, 0.12) 40%, rgba(9, 16, 31, 0.66) 100%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.18), transparent 20%, transparent 70%, rgba(255, 255, 255, 0.08) 100%);
  z-index: 1;
}

.home-page .video-shell::after {
  background:
    linear-gradient(180deg, rgba(13, 13, 15, 0.05) 0%, rgba(13, 13, 15, 0.16) 42%, rgba(13, 13, 15, 0.72) 100%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.14), transparent 20%, transparent 72%, rgba(255, 255, 255, 0.06) 100%);
}

.video-placeholder-shell {
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.home-page .video-placeholder-shell::before {
  content: "Featured video";
}

.video-placeholder-inner {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 1rem;
  width: min(100%, 320px);
  margin: auto;
  text-align: center;
}

.video-placeholder-logo {
  width: min(100%, 300px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.34));
}

.video-placeholder-note {
  margin: 0;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-caption {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.4rem;
  max-width: 290px;
}

.hero-overview-pills {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.55rem;
  justify-items: end;
  max-width: 220px;
}

.hero-overview-pills .meta-pill {
  background: rgba(13, 13, 15, 0.62);
  border-color: rgba(240, 237, 230, 0.12);
  backdrop-filter: blur(10px);
}

.video-caption span {
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.video-caption strong {
  font-size: 1.3rem;
  line-height: 1.1;
}

.play-badge {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
}

.video-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0.15rem 0.1rem;
}

.video-card footer strong {
  display: block;
  margin-bottom: 0.25rem;
}

section {
  padding: 1.2rem 0 3.2rem;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.2rem;
  margin-bottom: 1.4rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.process-card {
  position: relative;
}

.section-head-tight {
  margin-bottom: 1.7rem;
}

.section-head .archive-note {
  max-width: 480px;
}

.section-head h2,
.card h3,
.market-card h3,
.stock-card h2,
.stock-card h3,
.pricing-card h3,
.summary-card h3,
.archive-table h3,
.callout h3 {
  margin: 0.4rem 0 0;
  letter-spacing: -0.03em;
}

.card-grid,
.market-grid,
.summary-grid,
.pricing-grid,
.feature-points,
.archive-cards {
  display: grid;
  gap: 1.2rem;
}

.pricing-grid {
  align-items: stretch;
}

.card-grid,
.market-grid,
.pricing-grid,
.summary-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.market-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.market-card,
.pricing-card,
.summary-card,
.callout,
.newsletter-card,
.stock-card,
.disclaimer,
.empty-state {
  padding: 1.45rem;
}

.pricing-card,
.summary-card,
.callout,
.newsletter-card,
.stock-card,
.archive-table,
.success-card {
  position: relative;
  overflow: hidden;
  --accent-corner-offset: 0.35rem;
  --accent-corner-size: 124px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.pricing-card::after,
.summary-card::after,
.callout::after,
.newsletter-card::after,
.stock-card::after,
.archive-table::after,
.success-card::after {
  content: "";
  position: absolute;
  top: var(--accent-corner-offset);
  right: var(--accent-corner-offset);
  width: var(--accent-corner-size);
  height: var(--accent-corner-size);
  background: url("/assets/brand/p2b-logo-mark.webp") top right/contain no-repeat;
  opacity: 0.038;
  filter: grayscale(1) brightness(1.28);
  pointer-events: none;
}

.pricing-card > *,
.summary-card > *,
.callout > *,
.newsletter-card > *,
.stock-card > *,
.archive-table > *,
.success-card > * {
  position: relative;
  z-index: 1;
}

.pricing-card .badge {
  margin-bottom: 0.7rem;
}

.pricing-card p {
  margin: 0.55rem 0 0;
}

.pricing-card .list {
  margin-bottom: 1.35rem;
}

.pricing-card .button {
  margin-top: auto;
}

.premium-card {
  border-color: rgba(255, 200, 87, 0.34);
  background:
    radial-gradient(circle at top, rgba(255, 200, 87, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(22, 35, 62, 0.98), rgba(11, 20, 36, 0.94));
  transform: translateY(-10px);
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 200, 87, 0.07) inset;
}

.home-page .premium-card {
  border-color: rgba(216, 154, 85, 0.34);
  background:
    radial-gradient(circle at top, rgba(216, 154, 85, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(44, 31, 25, 0.98), rgba(16, 14, 15, 0.95));
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.46), 0 0 0 1px rgba(216, 154, 85, 0.08) inset;
}

.premium-card .price strong {
  font-size: 2.8rem;
}

.premium-offer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 0.8rem;
}

.premium-offer-header .badge,
.premium-offer-header .kicker {
  margin-bottom: 0;
}

.premium-offer-corner {
  display: grid;
  gap: 0.12rem;
  justify-items: end;
  max-width: 13rem;
  padding: 0.55rem 0.8rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 107, 107, 0.28);
  background: rgba(8, 17, 31, 0.84);
  text-align: right;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.home-page .premium-offer-corner {
  background: rgba(14, 12, 12, 0.84);
}

.premium-offer-original {
  position: relative;
  display: inline-block;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.1;
  padding: 0 0.05rem;
}

.premium-offer-original::after {
  content: "";
  position: absolute;
  left: -0.04rem;
  right: -0.04rem;
  top: calc(50% - 1px);
  height: 2px;
  background: var(--red);
  border-radius: 999px;
  transform: translateY(-50%);
}

.premium-offer-caption,
.premium-offer-deadline {
  line-height: 1.35;
}

.premium-offer-caption {
  color: var(--text);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.premium-offer-deadline {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 600;
}

.market-card,
.action-button {
  position: relative;
  overflow: hidden;
  --accent-corner-offset: 0.35rem;
  --accent-corner-size: 124px;
}

.market-card::after,
.action-button::after {
  content: "";
  position: absolute;
  right: var(--accent-corner-offset);
  bottom: var(--accent-corner-offset);
  width: var(--accent-corner-size);
  height: var(--accent-corner-size);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.home-page .market-card::after,
.home-page .action-button::after {
  background:
    url("/assets/brand/p2b-logo.webp") right bottom/92px 92px no-repeat,
    radial-gradient(circle at center, rgba(216, 154, 85, 0.08) 0%, rgba(216, 154, 85, 0.04) 38%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid rgba(216, 154, 85, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.015);
  opacity: 0.11;
  filter: grayscale(1) brightness(1.3);
}

.flag-badge {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.action-button {
  display: block;
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  min-height: 180px;
}

.home-page .action-button {
  min-height: 162px;
  background: linear-gradient(180deg, rgba(26, 26, 29, 0.96), rgba(16, 16, 18, 0.94));
}

.home-page .action-button-premium {
  border-color: rgba(216, 154, 85, 0.26);
  background: linear-gradient(180deg, rgba(40, 30, 24, 0.96), rgba(18, 16, 15, 0.94));
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(17, 31, 56, 0.92), rgba(10, 19, 35, 0.88));
}

.quick-link {
  display: grid;
  gap: 0.4rem;
  align-content: center;
  min-height: 120px;
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.quick-link:hover,
.quick-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 200, 87, 0.4);
  background: rgba(255, 255, 255, 0.06);
}

.quick-link strong {
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}

.quick-link span {
  color: var(--muted);
  line-height: 1.5;
}

.action-button strong {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 0.45rem;
}

.action-button .button-label strong {
  display: inline;
  margin: 0;
}

.action-button span {
  color: var(--muted);
  line-height: 1.6;
}

.action-button .button-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.card-link,
.market-card .button {
  margin-top: 1.2rem;
}

.stat-row {
  margin-top: 1.3rem;
}

.stat-chip strong,
.metric strong,
.summary-stat strong {
  display: block;
  font-size: 1.15rem;
  color: var(--text);
}

.summary-stat strong {
  font-size: 1rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.metric-grid,
.summary-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.summary-stats {
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.metric,
.summary-stat {
  min-width: 0;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.price {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin: 0.6rem 0 0.85rem;
}

.price strong {
  font-size: 2.4rem;
}

.price span {
  color: var(--muted);
}

.pricing-toolbar {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.billing-toggle {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pricing-location {
  margin: 0;
}

.pricing-card-featured .button {
  box-shadow: 0 18px 40px rgba(255, 191, 36, 0.22);
}

.notice-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  background: rgba(5, 10, 18, 0.78);
  backdrop-filter: blur(12px);
}

.notice-modal[hidden] {
  display: none;
}

.notice-modal-card {
  width: min(100%, 560px);
  padding: 1.55rem;
  border-color: rgba(255, 200, 87, 0.2);
  background:
    radial-gradient(circle at top right, rgba(255, 200, 87, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(20, 34, 60, 0.98), rgba(10, 18, 32, 0.96));
}

.notice-modal-card h3 {
  margin-bottom: 0.75rem;
}

.notice-modal-card p {
  margin: 0.75rem 0 0;
}

.status-note {
  margin: 0.2rem 0 0.2rem;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
}

.home-page .status-note {
  color: #e0b27b;
}

.panel-soft {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.capacity-panel {
  display: grid;
  gap: 0.35rem;
  margin-top: 1.2rem;
  padding: 1.2rem;
}

.capacity-panel p {
  margin: 0;
}

.list,
.timeline,
.stock-list,
.check-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.list li,
.timeline li,
.stock-list li,
.check-list li {
  margin-bottom: 0.75rem;
}

.newsletter-card form {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

.input-row {
  display: grid;
  gap: 0.4rem;
}

.input-row input,
.input-row textarea {
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0 1rem;
}

.input-row textarea {
  min-height: 180px;
  padding: 0.9rem 1rem;
  resize: vertical;
}

.input-row input::placeholder,
.input-row textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.page-hero {
  padding: 3.8rem 0 2rem;
}

.page-hero .container,
.feature-grid,
.archive-grid,
.cta-grid,
.two-col {
  grid-template-columns: 1.2fr 0.8fr;
}

.tab-button,
.filter-button {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 0.75rem 1rem;
  cursor: pointer;
  font-weight: 700;
}

.market-panel {
  display: none;
}

.market-panel.active {
  display: block;
}

.stock-card .topline {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.stock-chart-block {
  margin-top: 1.35rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
}

.chart-copy h3 {
  margin: 0.35rem 0 0;
  font-size: 1rem;
}

.stock-chart {
  width: 100%;
  height: 280px;
  margin-top: 1rem;
}

.stock-card h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.stock-card .ticker {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-points .metric {
  min-width: 150px;
}

.feature-points {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1rem;
}

.archive-table {
  overflow: hidden;
}

.table-wrap {
  overflow-x: auto;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.table th {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.table tbody tr[data-market] {
  transition: opacity 160ms ease;
}

.table tbody tr.is-hidden {
  display: none;
}

.result-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.86rem;
}

.result-pill.win {
  background: rgba(54, 211, 153, 0.14);
  color: #92f1ca;
}

.result-pill.watch {
  background: rgba(255, 200, 87, 0.14);
  color: #ffe08f;
}

.result-pill.stop {
  background: rgba(255, 107, 107, 0.14);
  color: #ffacac;
}

.disclaimer {
  margin-top: 1.5rem;
}

.footer {
  padding: 2rem 0 3rem;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.4rem;
}

.footer-row-stacked {
  align-items: flex-start;
  flex-direction: column;
}

.footer-copy {
  max-width: 760px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-links a {
  color: var(--muted);
  transition: color 160ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.centered {
  text-align: center;
}

.success-shell {
  min-height: 75vh;
  display: grid;
  place-items: center;
}

.success-card {
  width: min(100%, 760px);
  padding: 2rem;
}

.success-logo {
  width: min(100%, 260px);
  margin: 0 auto 1.25rem;
  filter: drop-shadow(0 16px 30px rgba(255, 184, 0, 0.2));
}

.clickbank-trust-badge-slot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  min-height: 44px;
}

@media (max-width: 980px) {
  .hero-grid,
  .page-hero .container,
  .feature-grid,
  .archive-grid,
  .cta-grid,
  .two-col,
  .card-grid,
  .market-grid,
  .pricing-grid,
  .summary-grid,
  .feature-points,
  .metric-grid,
  .summary-stats,
  .action-grid,
  .quick-links {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-head,
  .footer-row,
  .nav-row,
  .video-card footer,
  .stock-card .topline {
    align-items: start;
    flex-direction: column;
  }

  .video-shell {
    min-height: 320px;
  }

  .hero-overview-pills {
    justify-items: start;
    max-width: none;
  }

  .stock-chart {
    height: 240px;
  }

  .premium-card {
    transform: none;
  }

  .play-badge {
    margin-bottom: 0.25rem;
  }

  .video-caption {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .hero,
  section,
  .page-hero {
    padding-top: 2.6rem;
  }

  .container {
    width: min(calc(100% - 1.2rem), var(--max-width));
  }

  .button,
  button.button,
  a.button {
    width: 100%;
  }

  .nav-links {
    width: 100%;
  }

  .brand-logo {
    height: 50px;
  }

  .home-page .brand-logo {
    height: 52px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-overview-pills {
    width: 100%;
  }

  .pricing-card::after,
  .summary-card::after,
  .callout::after,
  .newsletter-card::after,
  .stock-card::after,
  .archive-table::after,
  .success-card::after,
  .market-card::after,
  .action-button::after {
    width: 104px;
    height: 104px;
  }

  .pricing-card,
  .summary-card,
  .callout,
  .newsletter-card,
  .stock-card,
  .archive-table,
  .success-card,
  .market-card,
  .action-button {
    --accent-corner-size: 104px;
  }

  .home-page .market-card::after,
  .home-page .action-button::after {
    background:
      url("/assets/brand/p2b-logo.webp") right bottom/78px 78px no-repeat,
      radial-gradient(circle at center, rgba(216, 154, 85, 0.08) 0%, rgba(216, 154, 85, 0.04) 38%, rgba(255, 255, 255, 0.015) 100%);
  }

  .play-badge {
    width: 70px;
    height: 70px;
    font-size: 1.6rem;
  }

  .quick-link {
    min-height: 96px;
  }

  .table th,
  .table td {
    padding: 0.8rem;
  }
}
