/* ============================================================
   SCT Landing Page — page-specific styles.
   Loaded in addition to styles.css. Extracted from inline
   <style> block in index.html (UX audit A-07, Mar 2026).
   ============================================================ */
:root {
  --navy:          #111A28;
  --dark-navy:     #0d1520;
  --card-bg:       #1C2A3C;
  --teal:          #21B4A6;
  --teal-hover:    #0FAF9F;
  --heading:       #FFFFFF;
  --text-muted:    #aaaacc;
  --border:        #2a3a4c;
}

/* ── Hero section ── */
.hero {
  width: 100%;
  box-sizing: border-box;
  padding: 100px 40px 80px;
  text-align: center;
  background: linear-gradient(180deg, var(--dark-navy) 0%, var(--navy) 100%);
  border-bottom: 1px solid var(--border);
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.78em;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(33,180,166,0.1);
  border: 1px solid rgba(33,180,166,0.3);
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 28px;
}
.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.4em, 6vw, 3.8em);
  font-weight: 800;
  color: var(--heading);
  line-height: 1.15;
  margin: 0 auto 24px;
  max-width: 720px;
}
.hero-title span { color: var(--teal); }
.hero-lead {
  font-size: 1.1em;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 44px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-pilot-note {
  display: block;
  font-size: 0.82em;
  color: var(--text-muted);
  margin-top: 12px;
  letter-spacing: 0.02em;
}

/* ── Landing buttons ── */
.landing-btn { margin-top: 0; }
.btn--outline {
  background: transparent;
  border: 2px solid var(--teal);
  color: var(--teal);
}
.btn--outline:hover {
  background: rgba(33,180,166,0.1);
  text-decoration: none;
  color: var(--teal);
}

/* ── How it works ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.step-card {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 32px 24px;
  border: 1px solid var(--border);
  text-align: center;
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(33,180,166,0.15);
  border: 2px solid var(--teal);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1em;
  color: var(--teal);
  margin-bottom: 20px;
}
.step-icon  { font-size: 2.2em; display: block; margin-bottom: 14px; }
.step-card h3 { font-size: 1em; margin: 0 0 10px; text-align: center; }
.step-card p  { font-size: 0.86em; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* ── Demo products ── */
.tier-label {
  font-family: Poppins, Lato, sans-serif;
  font-weight: 600;
  font-size: 0.82em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 32px 0 0;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.tier-label:first-of-type { margin-top: 48px; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.product-card {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.product-card:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
}
.product-emoji   { font-size: 2.8em; margin-bottom: 14px; display: block; }
.product-category {
  display: inline-block;
  font-size: 0.72em;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(33,180,166,0.1);
  border: 1px solid rgba(33,180,166,0.25);
  border-radius: 20px;
  padding: 2px 10px;
  margin-bottom: 10px;
}
.product-name    { font-family: 'Poppins', sans-serif; font-size: 1.05em; font-weight: 700; color: var(--heading); margin: 0 0 4px; }
.product-company { font-size: 0.82em; color: var(--text-muted); margin: 0 0 20px; }
.product-link {
  margin-top: auto;
  display: inline-block;
  font-size: 0.88em;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.product-link:hover { text-decoration: underline; }

/* ── Standards ── */
.standards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.standard-card {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.standard-card:hover  { border-color: var(--teal); }
.standard-icon        { font-size: 2em; display: block; margin-bottom: 12px; }
.standard-card h3     { font-size: 0.95em; margin: 0 0 8px; color: var(--heading); }
.standard-card p      { font-size: 0.84em; color: var(--text-muted); margin: 0; line-height: 1.6; }
.standard-ref {
  display: inline-block;
  font-size: 0.75em;
  font-weight: 700;
  color: var(--teal);
  background: rgba(33,180,166,0.1);
  border: 1px solid rgba(33,180,166,0.25);
  border-radius: 12px;
  padding: 2px 10px;
  margin-top: 12px;
}

/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.pricing-card {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 36px 28px 32px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.pricing-card:hover     { border-color: var(--teal); transform: translateY(-2px); }
.pricing-card--recommended { border-color: var(--teal); border-width: 2px; }
.pricing-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--navy);
  font-size: 0.7em;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-tier    { font-family: 'Poppins', sans-serif; font-size: 1.3em; font-weight: 800; color: var(--heading); margin: 0 0 4px; text-align: center; }
.pricing-price   { text-align: center; margin: 0 0 4px; }
.pricing-amount  { font-family: 'Poppins', sans-serif; font-size: 2.2em; font-weight: 800; color: var(--teal); }
.pricing-period  { font-size: 0.85em; color: var(--text-muted); }
.pricing-item-fee { text-align: center; font-size: 0.85em; color: var(--text-muted); margin: 0 0 20px; }
.pricing-divider  { height: 1px; background: var(--border); margin: 0 0 20px; }
.pricing-features { list-style: none; padding: 0; margin: 0 0 28px; flex: 1; }
.pricing-features li {
  font-size: 0.88em;
  color: #EDF6F3;
  padding: 5px 0 5px 22px;
  position: relative;
  line-height: 1.5;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(33,180,166,0.15);
  border: 1.5px solid var(--teal);
}
.pricing-features li.excluded       { color: #666; }
.pricing-features li.excluded::before { background: transparent; border-color: #444; }
.pricing-cta .btn { width: 100%; margin-top: 0; }

/* ── Responsive ── */
@media (min-width: 1200px) {
  .hero               { padding: 120px 40px 100px; }
  .hero-title         { max-width: 900px; }
  .hero-lead          { max-width: 680px; font-size: 1.15em; }
  .products-grid      { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .standards-grid     { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .step-card          { padding: 40px 28px; }
}
@media (max-width: 768px) {
  .hero { padding: 70px 20px 60px; }
  .steps-grid   { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
