:root {
  --charcoal: #1C1C1C;
  --bone: #F7F4EF;
  --gold: #C9A86A;
  --fog: #E2E2DF;
  --teal: #3F8E8D;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Open Sans', sans-serif;
  background-color: var(--bone);
  color: var(--charcoal);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.container {
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-6xl {
  max-width: 72rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.text-center {
  text-align: center;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mr-3 {
  margin-right: 0.75rem;
}

/* Hero Section */
.hero-section {
  background-color: var(--bone);
  padding: 5rem 0;
  animation: fadeIn 0.6s ease-out;
}

.hero-title {
  font-size: 3rem;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-subtitle {
  font-size: 1.5rem;
  color: rgba(28, 28, 28, 0.9);
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

@media (min-width: 640px) {
  .hero-subtitle {
    font-size: 1.875rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(28, 28, 28, 0.7);
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.cta-button {
  display: inline-block;
  background-color: var(--gold);
  color: var(--charcoal);
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  background-color: rgba(201, 168, 106, 0.9);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.hero-note {
  font-size: 0.875rem;
  color: rgba(28, 28, 28, 0.6);
}

/* Sections */
.section-white {
  background-color: white;
  padding: 4rem 0;
}

.section-fog {
  background-color: rgba(226, 226, 223, 0.3);
  padding: 4rem 0;
}

.section-teal {
  background-color: rgba(63, 142, 141, 0.05);
  padding: 4rem 0;
}

.section-charcoal {
  background-color: var(--charcoal);
  padding: 5rem 0;
}

.section-title {
  font-size: 2.25rem;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  text-align: center;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-title-white {
  font-size: 2.25rem;
  color: var(--bone);
  margin-bottom: 1rem;
  text-align: center;
}

@media (min-width: 640px) {
  .section-title-white {
    font-size: 2.5rem;
  }
}

.section-subtitle-white {
  font-size: 1.25rem;
  color: rgba(247, 244, 239, 0.8);
  margin-bottom: 2rem;
  text-align: center;
}

.prose {
  color: rgba(28, 28, 28, 0.8);
}

.text-xl {
  font-size: 1.25rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-charcoal-60 {
  color: rgba(28, 28, 28, 0.6);
}

.text-charcoal-70 {
  color: rgba(28, 28, 28, 0.7);
}

.text-charcoal-80 {
  color: rgba(28, 28, 28, 0.8);
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.step-item {
  text-align: center;
}

.step-number {
  background-color: rgba(201, 168, 106, 0.2);
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  color: var(--charcoal);
}

.step-title {
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.step-description {
  font-size: 0.875rem;
  color: rgba(28, 28, 28, 0.7);
}

/* Modes Grid */
.modes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .modes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.mode-card {
  border-radius: 0.5rem;
  padding: 2rem;
  border: 2px solid;
}

.mode-card-fog {
  background-color: rgba(226, 226, 223, 0.5);
  border-color: var(--fog);
}

.mode-card-gold {
  background-color: rgba(201, 168, 106, 0.1);
  border-color: var(--gold);
}

.mode-title {
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.mode-text {
  color: rgba(28, 28, 28, 0.8);
  margin-bottom: 1rem;
}

.mode-text-secondary {
  color: rgba(28, 28, 28, 0.7);
}

/* Review Card */
.review-card {
  background-color: white;
  border-radius: 0.5rem;
  padding: 2rem;
  border: 1px solid var(--fog);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.review-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: rgba(28, 28, 28, 0.8);
}

.review-item {
  display: flex;
  align-items: flex-start;
}

.checkmark {
  color: var(--gold);
  margin-right: 0.75rem;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-item {
  display: flex;
  align-items: flex-start;
  color: rgba(28, 28, 28, 0.8);
}

.feature-item-full {
  grid-column: 1 / -1;
}

@media (min-width: 768px) {
  .feature-item-full {
    grid-column: span 2;
  }
}

.bullet {
  color: var(--gold);
  font-size: 1.25rem;
  margin-right: 0.75rem;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pricing-card {
  border-radius: 0.5rem;
  padding: 2rem;
  border: 2px solid;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.pricing-card-gold {
  border-color: var(--gold);
}

.pricing-card-fog {
  border-color: var(--fog);
}

.pricing-title {
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.pricing-badge {
  font-size: 0.875rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

.pricing-text {
  color: rgba(28, 28, 28, 0.8);
  margin-bottom: 1rem;
}

/* Form */
.form-container {
  background-color: var(--bone);
  border-radius: 0.5rem;
  padding: 2rem;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--fog);
  background-color: white;
  color: var(--charcoal);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201, 168, 106, 0.2);
}

.submit-button {
  width: 100%;
  background-color: var(--gold);
  color: var(--charcoal);
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.submit-button:hover:not(:disabled) {
  background-color: rgba(201, 168, 106, 0.9);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.submit-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Success Message */
.success-message {
  background-color: rgba(201, 168, 106, 0.1);
  border: 2px solid var(--gold);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
}

.success-title {
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.success-text {
  color: rgba(28, 28, 28, 0.8);
}

/* Footer */
.footer {
  background-color: var(--charcoal);
  padding: 3rem 0;
}

.footer-text {
  color: rgba(247, 244, 239, 0.8);
  margin-bottom: 0.5rem;
}

.footer-link {
  color: rgba(247, 244, 239, 0.6);
  margin-bottom: 1rem;
}

.footer-note {
  color: rgba(247, 244, 239, 0.6);
  font-size: 0.875rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* Conversion Optimization Styles */

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--charcoal);
  padding: 1rem;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.sticky-cta-button {
  background-color: var(--gold);
  color: var(--charcoal);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.sticky-cta-button:hover {
  background-color: rgba(201, 168, 106, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Urgency Badge */
.urgency-badge {
  display: inline-block;
  background-color: var(--gold);
  color: var(--charcoal);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  animation: pulse 2s infinite;
}

.urgency-badge-white {
  display: inline-block;
  background-color: var(--gold);
  color: var(--charcoal);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.trust-badge {
  display: inline-block;
  background-color: rgba(226, 226, 223, 0.5);
  color: var(--charcoal);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  border: 1px solid var(--fog);
}

/* Highlight */
.highlight {
  color: var(--gold);
  font-weight: 700;
}

/* Secondary CTA Button */
.cta-button-secondary {
  display: inline-block;
  background-color: transparent;
  color: var(--charcoal);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  border: 2px solid var(--gold);
  transition: all 0.3s ease;
}

.cta-button-secondary:hover {
  background-color: var(--gold);
  color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-card {
  text-align: center;
  padding: 1.5rem;
  background-color: white;
  border-radius: 0.5rem;
  border: 2px solid var(--fog);
}

.benefit-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.benefit-unit {
  font-size: 0.875rem;
  color: rgba(28, 28, 28, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}

.benefit-text {
  margin-top: 0.75rem;
  color: rgba(28, 28, 28, 0.8);
  font-size: 0.875rem;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testimonial-card {
  background-color: var(--bone);
  padding: 2rem;
  border-radius: 0.5rem;
  border-left: 4px solid var(--gold);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
  font-size: 1.125rem;
  color: var(--charcoal);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.testimonial-author {
  color: rgba(28, 28, 28, 0.7);
  font-size: 0.875rem;
  font-weight: 500;
}

/* FAQ */
.faq-list {
  margin-top: 2rem;
}

.faq-item {
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid var(--fog);
}

.faq-question {
  font-size: 1.25rem;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  font-family: 'Playfair Display', serif;
}

.faq-answer {
  color: rgba(28, 28, 28, 0.8);
  line-height: 1.6;
}

/* Risk Reversal */
.risk-reversal {
  text-align: center;
  color: rgba(247, 244, 239, 0.9);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background-color: rgba(201, 168, 106, 0.1);
  border-radius: 0.5rem;
  border: 1px solid rgba(201, 168, 106, 0.3);
}

