/* Generated from pinpole-pricing-v2.html — all rules scoped to #pricing-page */

/* ── TOKENS ── */
#pricing-page {
  --bg:             #0a0a0f;
  --surface:        #111118;
  --surface-raised: #18181f;
  --surface-hover:  #1e1e28;
  --border:         rgba(255,255,255,0.065);
  --border-mid:     rgba(255,255,255,0.11);
  --border-bright:  rgba(255,255,255,0.2);
  --text:           #e4e2ef;
  --text-muted:     #9896aa;
  --text-subtle:    #7c7a90;
  --accent:         #3d8ef5;
  --accent-dim:     rgba(61,142,245,0.1);
  --accent-glow:    rgba(61,142,245,0.18);
  --warn:           #d4860a;
  --warn-dim:       rgba(212,134,10,0.12);
  --danger:         #c94040;
  --danger-dim:     rgba(201,64,64,0.12);
  --success:        #3a9c4f;
  --success-dim:    rgba(58,156,79,0.12);
  --pro:            #6b5ce7;
  --pro-dim:        rgba(107,92,231,0.1);
  --pro-glow:       rgba(107,92,231,0.18);
  --display:        'IBM Plex Sans', sans-serif;
  --mono:           'JetBrains Mono', monospace;
  --radius:         8px;
  --radius-lg:      14px;
  --radius-xl:      20px;
  --transition:     150ms cubic-bezier(0.16,1,0.3,1);
  font-family: var(--display);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── RESET ── */
#pricing-page *, #pricing-page *::before, #pricing-page *::after { box-sizing: border-box; margin: 0; padding: 0; }
#pricing-page a { color: inherit; text-decoration: none; }

#pricing-page ::-webkit-scrollbar { width: 5px; }
#pricing-page ::-webkit-scrollbar-track { background: var(--bg); }
#pricing-page ::-webkit-scrollbar-thumb { background: var(--surface-raised); border-radius: 3px; }

/* ── UTILITIES ── */
#pricing-page .container { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }

/* ── REVEAL ── */
#pricing-page .reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s cubic-bezier(0.16,1,0.3,1), transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
#pricing-page .reveal.visible{ opacity: 1; transform: none; }

/* ── HERO ── */
#pricing-page .pricing-hero{
  text-align: center;
  padding: 80px 2rem 48px;
  position: relative;
  overflow: hidden;
}
#pricing-page .pricing-hero::before{
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse at 50% 0%, rgba(61,142,245,0.08) 0%, transparent 70%);
  pointer-events: none;
}
#pricing-page .eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(61,142,245,0.22);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 24px;
}
#pricing-page .eyebrow .live-dot{
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2.4s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.45;transform:scale(0.85)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:none} }

#pricing-page .pricing-hero h1{
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 16px;
  animation: fadeUp 0.5s ease both;
}
#pricing-page .pricing-hero h1 em{
  font-style: normal;
  color: var(--accent);
}
#pricing-page .pricing-hero p{
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.75;
  animation: fadeUp 0.5s 0.08s ease both;
}

/* ── PROVIDER STRIP ── */
#pricing-page .provider-strip{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 36px;
  animation: fadeUp 0.5s 0.14s ease both;
  flex-wrap: wrap;
  justify-content: center;
}
#pricing-page .provider-pill{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border-mid);
  padding: 4px 10px;
  border-radius: 6px;
}
#pricing-page .provider-pill .dot{
  width: 6px; height: 6px;
  border-radius: 50%;
}
#pricing-page .provider-pill.aws .dot{ background: #f59b1a; }
#pricing-page .provider-pill.gcp .dot{ background: #4285f4; }
#pricing-page .provider-pill.azure .dot{ background: #008ad7; }
#pricing-page .provider-sep{
  font-size: 11px;
  color: var(--text-subtle);
  font-family: var(--mono);
}

/* ── BILLING TOGGLE ── */
#pricing-page .billing-toggle{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 56px;
  animation: fadeUp 0.5s 0.18s ease both;
}
#pricing-page .toggle-switch{
  position: relative;
  width: 44px; height: 24px;
  cursor: pointer;
}
#pricing-page .toggle-switch input{ opacity: 0; width: 0; height: 0; }
#pricing-page .toggle-track{
  position: absolute;
  inset: 0;
  background: var(--surface-raised);
  border: 1px solid var(--border-mid);
  border-radius: 999px;
  transition: background 0.2s, border-color 0.2s;
}
#pricing-page .toggle-switch input:checked + .toggle-track{ background: var(--accent); border-color: var(--accent); }
#pricing-page .toggle-thumb{
  position: absolute;
  top: 3px; left: 3px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.22s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
#pricing-page .toggle-switch input:checked ~ .toggle-thumb{ transform: translateX(20px); }
#pricing-page .save-badge{
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--success);
  background: var(--success-dim);
  border: 1px solid rgba(58,156,79,0.22);
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
#pricing-page .billing-toggle .label-monthly,
#pricing-page .billing-toggle .label-annual{ transition: color 0.2s; }
#pricing-page .billing-toggle.annual .label-annual{ color: var(--text); }
#pricing-page .billing-toggle.monthly .label-monthly{ color: var(--text); }

/* ── PLAN CARDS ── */
#pricing-page .cards-section{ padding: 0 2rem; }
#pricing-page .cards-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 1240px;
  margin: 0 auto;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--border);
  gap: 1px;
  box-shadow: 0 0 60px rgba(0,0,0,0.4);
}
#pricing-page .plan-card{
  background: var(--surface);
  padding: 28px 22px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: background var(--transition);
}
#pricing-page .plan-card:hover{ background: var(--surface-hover); }
#pricing-page .plan-card.featured{
  background: #13131e;
}
#pricing-page .plan-card.featured::before{
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pro), var(--accent));
}
#pricing-page .popular-badge{
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pro);
  background: var(--pro-dim);
  border: 1px solid rgba(107,92,231,0.22);
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
  width: fit-content;
}
#pricing-page .plan-name{
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
#pricing-page .plan-price{
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: 4px;
}
#pricing-page .price-currency{
  font-size: 17px;
  font-weight: 400;
  color: var(--text-subtle);
  align-self: flex-start;
  margin-top: 10px;
}
#pricing-page .price-amount{
  font-size: 42px;
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
}
#pricing-page .price-amount.annual{ display: none; }
#pricing-page .price-period{
  font-size: 11.5px;
  color: var(--text-subtle);
  font-family: var(--mono);
  margin-left: 3px;
}
#pricing-page .price-note{
  font-size: 11.5px;
  color: var(--text-subtle);
  font-family: var(--mono);
  min-height: 16px;
  margin-bottom: 18px;
  line-height: 1.5;
}
#pricing-page .price-note.annual-note{ display: none; color: var(--success); }
#pricing-page .badge-placeholder{
  height: 20px;
  margin-bottom: 14px;
}
#pricing-page .plan-desc{
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 22px;
}
#pricing-page .plan-cta{
  display: block;
  text-align: center;
  padding: 10px 16px;
  border-radius: var(--radius);
  font-size: 12.5px;
  font-weight: 500;
  font-family: var(--display);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
  margin-bottom: 26px;
  border: 1px solid transparent;
}
#pricing-page .plan-cta.cta-ghost{
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border-mid);
}
#pricing-page .plan-cta.cta-ghost:hover{ border-color: var(--border-bright); color: var(--text); }
#pricing-page .plan-cta.cta-primary{
  background: linear-gradient(135deg, var(--pro), var(--accent));
  color: #fff;
  border: none;
  box-shadow: 0 4px 20px rgba(107,92,231,0.25);
}
#pricing-page .plan-cta.cta-primary:hover{ opacity: 0.9; transform: translateY(-1px); }
#pricing-page .plan-cta.cta-accent{
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
#pricing-page .plan-cta.cta-accent:hover{ background: #2d7ee5; transform: translateY(-1px); }
#pricing-page .plan-cta.cta-soft-accent{
  background: var(--accent-dim);
  color: var(--accent);
  border-color: rgba(61,142,245,0.3);
}
#pricing-page .plan-cta.cta-soft-accent:hover{ background: rgba(61,142,245,0.18); color: #fff; border-color: var(--accent); }
#pricing-page .plan-cta.cta-enterprise{
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border-mid);
}
#pricing-page .plan-cta.cta-enterprise:hover{ border-color: var(--border-bright); color: var(--text); }

#pricing-page .plan-features{ list-style: none; display: flex; flex-direction: column; gap: 9px; }
#pricing-page .plan-features li{
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}
#pricing-page .plan-features li strong{
  color: var(--text);
  font-weight: 500;
}
#pricing-page .feat-check{
  flex-shrink: 0;
  width: 13px; height: 13px;
  margin-top: 3px;
}
#pricing-page .feat-check.green{ color: var(--success); }
#pricing-page .feat-check.pro{ color: var(--pro); }
#pricing-page .feat-check.accent{ color: var(--accent); }
#pricing-page .feat-check.muted{ color: var(--text-muted); }
#pricing-page .feat-dash{
  flex-shrink: 0;
  width: 13px; height: 13px;
  margin-top: 3px;
  color: var(--text-subtle);
}
#pricing-page .feat-upcoming{
  display: inline-block;
  font-family: var(--mono);
  font-size: 9px;
  color: var(--warn);
  background: var(--warn-dim);
  border: 1px solid rgba(212,134,10,0.2);
  padding: 1px 6px;
  border-radius: 4px;
  margin-left: 4px;
  vertical-align: middle;
}


/* ── FEATURE TABLE ── */
#pricing-page .features-section{
  max-width: 1240px;
  margin: 80px auto 0;
  padding: 0 2rem;
}
#pricing-page .features-header{
  text-align: center;
  margin-bottom: 48px;
}
#pricing-page .features-header h2{
  font-size: 26px;
  font-weight: 300;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}
#pricing-page .features-header p{
  font-size: 13.5px;
  color: var(--text-muted);
}

#pricing-page .feature-table{
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
#pricing-page .feature-table thead tr{
  background: var(--surface-raised);
  border-bottom: 1px solid var(--border-mid);
}
#pricing-page .feature-table thead th{
  padding: 16px 14px;
  font-size: 11.5px;
  font-weight: 500;
  text-align: center;
  color: var(--text-muted);
  font-family: var(--mono);
  letter-spacing: 0.04em;
}
#pricing-page .feature-table thead th:first-child{ text-align: left; width: 28%; padding-left: 20px; }
#pricing-page .feature-table thead th.th-pro{
  color: var(--pro);
  background: rgba(107,92,231,0.06);
}

#pricing-page .feature-table .category-row td{
  padding: 14px 20px 8px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-subtle);
  background: var(--surface);
  border-top: 1px solid var(--border);
}
#pricing-page .feature-table .category-row:first-of-type td{ border-top: none; }

#pricing-page .feature-table tbody tr.feature-row{
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  transition: background var(--transition);
}
#pricing-page .feature-table tbody tr.feature-row:last-child{ border-bottom: none; }
#pricing-page .feature-table tbody tr.feature-row:hover{ background: var(--surface); }
#pricing-page .feature-table tbody tr.feature-row td{
  padding: 13px 14px;
  vertical-align: middle;
}
#pricing-page .feature-table tbody tr.feature-row td:first-child{ padding-left: 20px; }
#pricing-page .feature-table tbody tr.feature-row td.pro-col{
  background: rgba(107,92,231,0.04);
}
#pricing-page .feature-table tbody tr.feature-row:hover td.pro-col{
  background: rgba(107,92,231,0.07);
}

#pricing-page .feat-name{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
  position: relative;
}
#pricing-page .feat-info{
  width: 15px; height: 15px;
  border-radius: 50%;
  border: 1px solid var(--border-mid);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: var(--text-subtle);
  cursor: default;
  flex-shrink: 0;
  font-family: var(--mono);
  transition: border-color 0.2s, color 0.2s;
  position: relative;
}
#pricing-page .feat-info:hover{ border-color: var(--accent); color: var(--accent); }

#pricing-page .tooltip{
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--surface-raised);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 12px;
  font-family: var(--display);
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.55;
  width: 260px;
  z-index: 50;
  pointer-events: none;
  transition: opacity 0.15s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
#pricing-page .feat-info:hover .tooltip{
  visibility: visible;
  opacity: 1;
}

#pricing-page .feat-val{
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
}
#pricing-page .feat-val .icon-check{ color: var(--success); font-size: 14px; }
#pricing-page .feat-val .icon-dash{ color: var(--text-subtle); font-size: 16px; line-height: 1; }
#pricing-page .feat-val .icon-coming{
  font-family: var(--mono);
  font-size: 9.5px;
  color: var(--warn);
  background: var(--warn-dim);
  border: 1px solid rgba(212,134,10,0.2);
  padding: 2px 6px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
#pricing-page .feat-val .val-text{
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text);
}
#pricing-page .feat-val .val-muted{
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--text-subtle);
}
#pricing-page .feat-val .val-accent{
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--accent);
}

/* ── FAQ ── */
#pricing-page .faq-section{
  max-width: 760px;
  margin: 80px auto 0;
  padding: 0 2rem;
}
#pricing-page .section-heading{
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
  text-align: center;
}
#pricing-page .faq-item{
  border-bottom: 1px solid var(--border);
}
#pricing-page .faq-q{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text-muted);
  cursor: pointer;
  gap: 16px;
  user-select: none;
  transition: color var(--transition);
}
#pricing-page .faq-q:hover{ color: var(--text); }
#pricing-page .faq-item.open .faq-q{ color: var(--text); }
#pricing-page .faq-icon{
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-subtle);
  transition: transform 0.2s, border-color 0.2s, color 0.2s;
}
#pricing-page .faq-item.open .faq-icon{ transform: rotate(45deg); border-color: var(--accent); color: var(--accent); }
#pricing-page .faq-a{
  display: none;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
  padding: 0 0 20px;
}
#pricing-page .faq-item.open .faq-a{ display: block; }

/* ── CTA SECTION ── */
#pricing-page .cta-section{
  text-align: center;
  padding: 80px 2rem 100px;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}
#pricing-page .cta-section::before{
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse at center bottom, rgba(61,142,245,0.07) 0%, transparent 70%);
  pointer-events: none;
}
#pricing-page .cta-section h2{
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
#pricing-page .cta-section p{
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.75;
}
#pricing-page .cta-btns{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
#pricing-page .btn-primary{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--display);
  padding: 11px 24px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}
#pricing-page .btn-primary:hover{ background: #2d7ee5; transform: translateY(-1px); }
#pricing-page .btn-ghost-lg{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 400;
  font-family: var(--display);
  padding: 11px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border-mid);
  transition: border-color var(--transition), color var(--transition);
}
#pricing-page .btn-ghost-lg:hover{ border-color: var(--border-bright); color: var(--text); }

/* ── ANNUAL STATE ── */
#pricing-page.annual .price-amount.monthly { display: none; }
#pricing-page.annual .price-amount.annual  { display: inline; }
#pricing-page.annual .price-note.annual-note { display: block; }
#pricing-page.annual .price-note.monthly-note { display: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1180px) {
  #pricing-page .cards-grid{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  #pricing-page .cards-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  #pricing-page .cards-grid{ grid-template-columns: 1fr; }
  #pricing-page .feature-table{ font-size: 12px; }
  #pricing-page .feature-table thead th, #pricing-page .feature-table tbody td{ padding: 10px 10px; }
  #pricing-page .provider-strip{ flex-wrap: wrap; justify-content: center; }
}

/* ── Shell: match marketing nav/footer to #pricing-page canvas ──
   (Subpage body defaults to light cream in index-aligned-pages.css; glass nav was
   blurring that through. Footer used --surface vs page --bg.) */
html:has(body.pinpole-subpage.pinpole-pricing) {
  background: #0a0a0f;
}
body.pinpole-subpage.pinpole-pricing {
  background: #0a0a0f;
}
body.pinpole-subpage.pinpole-pricing #pp-site-nav.pp-chrome-vars,
body.pinpole-subpage.pinpole-pricing #pp-site-nav {
  background: #0a0a0f;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
body.pinpole-subpage.pinpole-pricing .nav-mobile-overlay.pp-chrome-vars,
body.pinpole-subpage.pinpole-pricing .nav-mobile-overlay {
  background: #0a0a0f;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
body.pinpole-subpage.pinpole-pricing #pp-site-footer.pp-chrome-vars,
body.pinpole-subpage.pinpole-pricing #pp-site-footer {
  background: #0a0a0f;
}
