/* Warm dark theme with approachable, professional styling */
:root {
  /* Warm color palette */
  --bg-primary: #1a1814;
  --bg-secondary: #231f1a;
  --bg-elevated: #2d2822;
  --text-primary: #f5f1eb;
  --text-secondary: #a89f92;
  --text-muted: #6b6358;
  --accent-warm: #d48c3e;
  --accent-warm-light: #e8a864;
  --accent-gentle: #9b7aa0;
  --border-subtle: rgba(212, 140, 62, 0.15);
  --border-elevated: rgba(212, 140, 62, 0.25);
  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-warm: 0 8px 32px rgba(212, 140, 62, 0.12);
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  font-family: 'DM Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;
}

body {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
}

.page {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px 60px;
}

.container {
  width: 100%;
  max-width: 800px;
}

/* Hero Section */
.hero {
  text-align: center;
  margin-bottom: 60px;
  padding: 40px 0;
}

.hero-header {
  margin-bottom: 32px;
}

.title {
  margin: 0;
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 2.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.1;
}

.subtitle {
  margin: 12px 0 0;
  font-size: 1.1rem;
  color: var(--accent-warm-light);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-intro {
  max-width: 540px;
  margin: 0 auto;
}

.tagline {
  margin: 0;
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Section Styling */
.section {
  margin-bottom: 56px;
  padding: 40px;
  background: var(--bg-elevated);
  border-radius: 24px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.3s ease;
}

.section:hover {
  box-shadow: var(--shadow-warm);
}

.section-title {
  margin: 0 0 28px;
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.title-icon {
  color: var(--accent-warm);
  font-size: 1.5rem;
  line-height: 1;
}

/* Section Content */
.about-content p,
.about-explanation p,
.about-promise p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 0 0 16px;
}

.about-content {
  margin-bottom: 32px;
}

.about-explanation {
  margin-bottom: 24px;
  padding: 24px;
  background: rgba(212, 140, 62, 0.06);
  border-radius: 16px;
  border-left: 3px solid var(--accent-warm);
}

.about-explanation p {
  color: var(--text-primary);
  margin-bottom: 20px;
}

.about-promise {
  text-align: center;
  padding-top: 8px;
}

.about-promise p {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--accent-warm-light);
}

/* Philosophy Section */
.philosophy-truths {
  margin-bottom: 28px;
}

.philosophy-truths p {
  margin: 0 0 8px;
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-primary);
  text-align: center;
}

.philosophy-truths p:last-child {
  margin-bottom: 0;
}

.philosophy-insight {
  padding: 24px;
  background: rgba(155, 122, 160, 0.08);
  border-radius: 16px;
}

.philosophy-insight p {
  margin: 0 0 12px;
  color: var(--text-secondary);
}

.philosophy-insight p:first-child {
  font-weight: 600;
  color: var(--accent-gentle);
  margin-bottom: 16px;
}

/* Features Section */
.features-intro,
.features-comparison > p:first-child {
  margin: 0 0 20px;
  color: var(--text-primary);
  font-size: 1.1rem;
}

.features-list,
.features-comparison {
  margin-bottom: 28px;
}

.features-comparison {
  padding: 24px;
  background: rgba(212, 140, 62, 0.04);
  border-radius: 16px;
}

/* Systems Section */
.systems-clarification p {
  margin: 0 0 16px;
  color: var(--text-secondary);
}

.systems-clarification p:first-child {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent-warm);
  margin-bottom: 12px;
}

.systems-list {
  margin-bottom: 24px;
}

.systems-promise {
  text-align: center;
  padding-top: 12px;
}

.systems-promise p {
  margin: 0 0 8px;
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 1.25rem;
  color: var(--text-secondary);
}

.systems-promise p:last-child {
  color: var(--accent-warm-light);
  font-weight: 500;
}

/* Outcomes Section */
.outcomes-list {
  margin-bottom: 24px;
}

.outcomes-closing {
  text-align: center;
  padding: 20px;
  background: rgba(212, 140, 62, 0.08);
  border-radius: 16px;
}

.outcomes-closing p {
  margin: 0;
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent-warm);
}

/* Audience Section */
.audience-list {
  margin: 0;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, rgba(212, 140, 62, 0.12) 0%, rgba(155, 122, 160, 0.08) 100%);
  border-color: var(--border-elevated);
  text-align: center;
}

.cta-box {
  margin-bottom: 32px;
}

.cta-title {
  margin: 0 0 16px;
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-primary);
}

.cta-description {
  margin: 0 0 28px;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.cta-content {
  max-width: 480px;
  margin: 0 auto 28px;
  text-align: left;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
}

.cta-content > p {
  margin: 0 0 16px;
  color: var(--text-primary);
  font-weight: 500;
}

.cta-button {
  display: inline-block;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--accent-warm) 0%, var(--accent-warm-light) 100%);
  color: var(--bg-primary);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(212, 140, 62, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(212, 140, 62, 0.4);
}

.cta-mantra {
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.cta-mantra p {
  margin: 0 0 8px;
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.cta-mantra p:last-child {
  margin-bottom: 0;
  color: var(--accent-warm);
}

/* Form Styling */
.cta-form-wrapper {
  max-width: 480px;
  margin: 0 auto;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
}

.form-field input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: 'DM Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.form-field input::placeholder {
  color: var(--text-muted);
}

.form-field input:focus {
  outline: none;
  border-color: var(--accent-warm);
  background: rgba(212, 140, 62, 0.06);
}

.form-message {
  min-height: 20px;
  font-size: 0.95rem;
  padding: 12px 16px;
  border-radius: 10px;
  text-align: center;
}

.form-message-success {
  background: rgba(46, 204, 113, 0.1);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.2);
}

.form-message-error {
  background: rgba(255, 107, 107, 0.08);
  color: #ff6b6b;
  border: 1px solid rgba(255, 107, 107, 0.15);
}

.cta-button {
  display: inline-block;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--accent-warm) 0%, var(--accent-warm-light) 100%);
  color: var(--bg-primary);
  text-decoration: none;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 4px 20px rgba(212, 140, 62, 0.3);
  cursor: pointer;
  text-align: center;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(212, 140, 62, 0.4);
}

.cta-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Styled Lists */
.styled-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.styled-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  border-bottom: 1px solid rgba(107, 99, 88, 0.15);
}

.styled-list li:last-child {
  border-bottom: none;
}

.styled-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--accent-warm);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Footer */
.footer {
  margin-top: 40px;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page {
    padding: 24px 16px 40px;
  }

  .title {
    font-size: 2.25rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .tagline {
    font-size: 1.35rem;
  }

  .section {
    padding: 32px 24px;
    margin-bottom: 40px;
    border-radius: 20px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .cta-title {
    font-size: 1.75rem;
  }

  .cta-button {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .cta-content {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 2rem;
  }

  .tagline {
    font-size: 1.25rem;
  }

  .section {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .section-title {
    font-size: 1.35rem;
    gap: 8px;
  }

  .title-icon {
    font-size: 1.25rem;
  }

  .philosophy-truths p {
    font-size: 1.15rem;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .cta-button {
    padding: 12px 24px;
    font-size: 0.95rem;
    width: 100%;
  }

  .cta-form {
    gap: 16px;
  }

  .form-field {
    gap: 6px;
  }

  .form-field input {
    padding: 12px 14px;
  }

  .form-message {
    font-size: 0.9rem;
    padding: 10px 12px;
  }

  .cta-mantra p {
    font-size: 1.2rem;
  }
}
