/* ============================
   TrueSource AI — Pitch-Deck Design System
   Colors: beige #F9F4EA / dark #1A0030 / lime #CCFF00 / purple #6100A2
   Fonts: Funnel Display (800) + Funnel Sans (300/500)
   ============================ */

:root {
  --bg: #F9F4EA;
  --dark: #1A0030;
  --text: #6100A2;
  --accent: #CCFF00;
  --accent2: #52FF00;
  --text-light: #9B7DB8;
  --text-muted: #B8A5C8;
  --white: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Funnel Sans', 'Helvetica Neue', sans-serif;
  background: var(--bg);
  color: var(--text);
}

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

/* ============================
   Utility
   ============================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(24px, 5vw, 60px); }
.accent { color: var(--accent); }
.highlight {
  background: var(--accent);
  color: var(--dark);
  padding: 0.1em 0.4em;
  font-weight: 700;
}

/* ============================
   Typography
   ============================ */
h1, h2, h3 {
  font-family: 'Funnel Display', sans-serif;
}

h1 {
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.1;
  color: var(--text);
  letter-spacing: -0.02em;
}

h2 {
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.1;
  color: var(--text);
  letter-spacing: -0.01em;
}

h3 {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 1rem;
}

p {
  font-family: 'Funnel Sans', sans-serif;
  font-weight: 300;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.7;
  color: rgba(97, 0, 162, 0.75);
  max-width: 60ch;
}

/* Section modifiers */
.section-dark {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.section-dark h1,
.section-dark h2,
.section-dark h3 { color: var(--bg); }
.section-dark p { color: rgba(249, 244, 234, 0.7); }
.section-dark .accent { color: var(--accent); }

/* ============================
   Glow Orbs
   ============================ */
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}
.glow-1 { width: 600px; height: 600px; background: var(--accent); right: -200px; top: -200px; }
.glow-2 { width: 400px; height: 400px; background: var(--accent2); left: -100px; bottom: -100px; }
.glow-3 { width: 500px; height: 500px; background: var(--accent); left: 50%; top: 50%; transform: translate(-50%, -50%); }

.section-dark > .container { position: relative; z-index: 1; }

/* ============================
   Navigation
   ============================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.3s ease;
}
.nav.scrolled {
  background: rgba(26, 0, 48, 0.95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 14px 0;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 60px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: 'Funnel Display', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--bg);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-dot {
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 0;
  display: inline-block;
}
.nav-cta {
  font-family: 'Funnel Sans', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--accent);
  color: var(--dark);
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.nav-cta:hover {
  background: var(--accent2);
}

/* ============================
   Hero (Dark)
   ============================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}
.hero-tag {
  font-family: 'Funnel Sans', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(249, 244, 234, 0.4);
  margin-bottom: 2rem;
}
.hero h1 {
  color: var(--bg);
  margin-bottom: 1.5rem;
}
.hero p {
  max-width: 50ch;
}
.hero-cta {
  display: inline-block;
  margin-top: 2rem;
  font-family: 'Funnel Sans', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--accent);
  color: var(--dark);
  padding: 16px 40px;
  transition: all 0.2s;
  text-decoration: none;
}
.hero-cta:hover {
  background: var(--accent2);
  transform: translateY(-2px);
}

/* Rotating text */
.rotating-wrapper {
  display: inline-block;
  position: relative;
  height: 1.2em;
  vertical-align: bottom;
  text-align: left;
  min-width: 280px;
}
.rotating-wrapper .word {
  display: none;
  color: var(--accent);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.5s ease;
  width: 100%;
}
.rotating-wrapper .word.active {
  display: block;
  opacity: 1;
}

/* ============================
   Stats Bar
   ============================ */
.stats-bar {
  padding: 48px 0;
  border-top: 1px solid rgba(97, 0, 162, 0.1);
  border-bottom: 1px solid rgba(97, 0, 162, 0.1);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat { text-align: left; }
.stat-number {
  font-family: 'Funnel Display', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text);
  line-height: 1;
}
.stat-label {
  font-family: 'Funnel Sans', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 0.3rem;
}

/* ============================
   What Section (Light)
   ============================ */
.what-section {
  padding: 100px 0;
}
.what-section .section-tag {
  font-family: 'Funnel Sans', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 2.5rem;
}
.col-card {
  padding: 2rem;
  border: 1px solid rgba(97, 0, 162, 0.12);
  transition: all 0.3s;
}
.col-card:hover {
  border-color: rgba(97, 0, 162, 0.25);
  box-shadow: 0 8px 40px rgba(97, 0, 162, 0.06);
}
.col-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
}
.col-card h3 .icon {
  width: 8px; height: 8px;
  background: var(--accent);
  display: inline-block;
}
.col-card p {
  font-size: 1rem;
  line-height: 1.6;
}

/* ============================
   Deliverables / Value Section
   ============================ */
.deliverables-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 700px) {
  .deliverables-grid { grid-template-columns: 1fr; }
}
.deliverable-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: rgba(26, 0, 48, 0.04);
  border: 1px solid rgba(26, 0, 48, 0.08);
  border-radius: 0;
}
.deliverable-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--accent);
  color: var(--dark);
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.deliverable-item strong {
  display: block;
  font-family: 'Funnel Display', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}
.deliverable-desc {
  display: block;
  font-size: 0.9rem;
  color: rgba(26, 0, 48, 0.65);
  line-height: 1.5;
}

/* Value Anchor */
.value-anchor {
  margin-top: 3rem;
  padding: 2rem;
  text-align: center;
  border: 2px solid var(--accent);
  background: rgba(204, 255, 0, 0.06);
}
.value-anchor-label {
  font-family: 'Funnel Sans', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(26, 0, 48, 0.5);
  margin-bottom: 0.5rem;
}
.value-anchor-price {
  font-family: 'Funnel Display', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
  line-height: 1.1;
}
.value-anchor-sub {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: rgba(26, 0, 48, 0.5);
}

/* ============================
   Standards Section (Dark)
   ============================ */
.standards-section {
  padding: 100px 0;
}
.standards-section .section-tag {
  font-family: 'Funnel Sans', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(249, 244, 234, 0.4);
  margin-bottom: 1.5rem;
}
.standards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}
.standard-card {
  padding: 2rem;
  border: 1px solid rgba(249, 244, 234, 0.1);
  transition: all 0.3s;
}
.standard-card:hover {
  border-color: var(--accent);
  background: rgba(204, 255, 0, 0.03);
}
.standard-card h3 {
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.standard-card p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.standard-card .card-link {
  font-family: 'Funnel Sans', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ============================
   Features List
   ============================ */
.features-list {
  list-style: none;
  padding: 0;
}
.features-list li {
  font-family: 'Funnel Sans', sans-serif;
  font-weight: 300;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.5;
  padding: 0.5em 0 0.5em 1.8em;
  position: relative;
}
.features-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.85em;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 0;
}
.section-dark .features-list li {
  color: rgba(249, 244, 234, 0.8);
}

/* ============================
   Press Section (Light)
   ============================ */
.press-section {
  padding: 100px 0;
  border-top: 1px solid rgba(97, 0, 162, 0.1);
}
.press-section .section-tag {
  font-family: 'Funnel Sans', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.press-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.press-item {
  padding: 1.5rem;
  border: 1px solid rgba(97, 0, 162, 0.08);
  transition: all 0.3s;
}
.press-item:hover {
  border-color: rgba(97, 0, 162, 0.2);
}
.press-item .press-source {
  font-family: 'Funnel Sans', sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
.press-item .press-title {
  font-family: 'Funnel Display', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.press-item .press-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================
   FAQ Section (Dark)
   ============================ */
.faq-section {
  padding: 100px 0;
}
.faq-section .section-tag {
  font-family: 'Funnel Sans', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(249, 244, 234, 0.4);
  margin-bottom: 1.5rem;
}
.faq-list {
  max-width: 700px;
  margin-top: 2rem;
}
.faq-item[id] {
  scroll-margin-top: 80px;
}
.faq-item {
  border-bottom: 1px solid rgba(249, 244, 234, 0.1);
}
.faq-item summary {
  font-family: 'Funnel Display', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--bg);
  padding: 1.2rem 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::after {
  content: '+';
  font-family: 'Funnel Sans', sans-serif;
  font-weight: 300;
  font-size: 1.4rem;
  color: var(--accent);
  transition: transform 0.2s;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-body {
  padding: 0 0 1.5rem;
  color: rgba(249, 244, 234, 0.6);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 60ch;
}
.faq-body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================
   Form Section (Light)
   ============================ */
.form-section {
  padding: 100px 0;
  border-top: 1px solid rgba(97, 0, 162, 0.1);
}
.form-section .section-tag {
  font-family: 'Funnel Sans', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.beta-form {
  max-width: 600px;
  margin-top: 2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-family: 'Funnel Sans', sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: transparent;
  border: 1px solid rgba(97, 0, 162, 0.2);
  color: var(--text);
  font-family: 'Funnel Sans', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  outline: none;
  transition: all 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--text);
  box-shadow: 0 0 0 3px rgba(97, 0, 162, 0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%239B7DB8' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.form-submit {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--text);
  color: var(--bg);
  font-family: 'Funnel Sans', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.form-submit:hover {
  background: var(--dark);
  transform: translateY(-1px);
}
.form-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

/* Success state */
.form-success {
  max-width: 600px;
  padding: 3rem 2rem;
  border: 1px solid rgba(97, 0, 162, 0.15);
  text-align: center;
  display: none;
}
.form-success.visible { display: block; }
.success-icon {
  width: 48px; height: 48px;
  background: var(--accent);
  color: var(--dark);
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.form-success h3 {
  color: var(--text);
  margin-bottom: 0.5rem;
}
.form-success p {
  margin: 0 auto 1.5rem;
  text-align: center;
}
.success-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.success-links a {
  font-family: 'Funnel Sans', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 20px;
  border: 1px solid rgba(97, 0, 162, 0.2);
  color: var(--text);
  transition: all 0.2s;
}
.success-links a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--dark);
}

/* ============================
   Footer
   ============================ */
.footer {
  padding: 40px 0;
  border-top: 1px solid rgba(249, 244, 234, 0.08);
}
.footer .nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 60px);
}
.footer-left {
  font-family: 'Funnel Sans', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  color: rgba(249, 244, 234, 0.4);
}
.footer-right {
  display: flex;
  gap: 2rem;
}
.footer-right a {
  font-family: 'Funnel Sans', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  color: rgba(249, 244, 234, 0.5);
  transition: color 0.2s;
}
.footer-right a:hover { color: var(--accent); }

/* ============================
   Responsive
   ============================ */
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .standards-grid { grid-template-columns: 1fr; }
  .press-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer .nav-inner { flex-direction: column; gap: 1rem; text-align: center; }
  .hero { padding-top: 100px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .hero h1 { font-size: 2rem; }
}

/* ============================
   Accessibility
   ============================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================
   Form Error Message
   ============================ */
.form-error {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.3);
  color: #dc2626;
  font-size: 0.9rem;
  line-height: 1.5;
}
.form-error.visible {
  display: block;
}
.form-error a {
  color: #dc2626;
  font-weight: 600;
  text-decoration: underline;
}

/* ============================
   Pricing Section (Dark)
   ============================ */
.pricing-section {
  padding: 120px 0;
}
.pricing-section .section-tag {
  font-family: 'Funnel Sans', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(249, 244, 234, 0.4);
  margin-bottom: 1.5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  align-items: start;
}

.pricing-card {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(249, 244, 234, 0.1);
  background: rgba(249, 244, 234, 0.03);
  position: relative;
  transition: all 0.3s ease;
}
.pricing-card:hover {
  border-color: rgba(249, 244, 234, 0.2);
  background: rgba(249, 244, 234, 0.05);
  transform: translateY(-4px);
}

.pricing-card-primary {
  border-color: var(--accent);
  background: rgba(204, 255, 0, 0.04);
  transform: scale(1.02);
}
.pricing-card-primary:hover {
  border-color: var(--accent);
  background: rgba(204, 255, 0, 0.08);
  transform: scale(1.02) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 2rem;
  background: var(--accent);
  color: var(--dark);
  font-family: 'Funnel Sans', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 16px;
}

.pricing-phase {
  font-family: 'Funnel Sans', sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.pricing-card h3 {
  font-family: 'Funnel Display', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--bg);
  margin-bottom: 1rem;
}

.pricing-price {
  font-family: 'Funnel Display', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--bg);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.pricing-plus {
  color: var(--accent);
  font-size: 0.7em;
}

.pricing-type {
  font-family: 'Funnel Sans', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  color: rgba(249, 244, 234, 0.5);
  margin-bottom: 1.5rem;
}

.pricing-desc {
  font-family: 'Funnel Sans', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(249, 244, 234, 0.6);
  max-width: none;
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}
.pricing-features li {
  font-family: 'Funnel Sans', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: rgba(249, 244, 234, 0.7);
  padding: 0.4em 0 0.4em 1.5em;
  position: relative;
  line-height: 1.4;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  background: var(--accent);
}

.pricing-example {
  padding: 1rem;
  background: rgba(204, 255, 0, 0.06);
  border: 1px solid rgba(204, 255, 0, 0.15);
  margin-bottom: 1.5rem;
  font-family: 'Funnel Sans', sans-serif;
  font-size: 0.95rem;
  color: rgba(249, 244, 234, 0.8);
}
.pricing-example strong {
  color: var(--accent);
  font-family: 'Funnel Display', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
}
.pricing-example-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(249, 244, 234, 0.4);
  margin-bottom: 0.3rem;
}

.pricing-cta {
  display: block;
  width: 100%;
  padding: 14px 24px;
  text-align: center;
  font-family: 'Funnel Sans', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--accent);
  color: var(--dark);
  text-decoration: none;
  transition: all 0.2s;
  margin-top: auto;
}
.pricing-cta:hover {
  background: var(--accent2);
  transform: translateY(-2px);
}

.pricing-cta-outline {
  background: transparent;
  border: 1px solid rgba(249, 244, 234, 0.2);
  color: var(--bg);
}
.pricing-cta-outline:hover {
  background: rgba(249, 244, 234, 0.08);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* Pricing Responsive */
@media (max-width: 960px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  .pricing-card-primary {
    transform: none;
    order: -1;
  }
  .pricing-card-primary:hover {
    transform: translateY(-4px);
  }
}
