/*
 * ================================================
 * SHADOW ALCHEMY - STATIC CSS EXPORT
 * Standalone version (no Tailwind dependency)
 * ================================================
 * 
 * Color Palette (HSL):
 * --background: 225 60% 3%
 * --foreground: 40 20% 95%
 * --gold: 38 45% 65%
 * --gold-light: 38 50% 78%
 * --card: 225 40% 6%
 * --muted: 225 25% 12%
 * --border: 225 25% 18%
 */


/* ================================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   ================================================ */
:root {
  /* Colors */
  --background: hsl(225, 60%, 3%);
  --foreground: hsl(40, 20%, 95%);
  --card: hsl(225, 40%, 6%);
  --muted: hsl(225, 25%, 12%);
  --muted-foreground: hsl(220, 15%, 60%);
  --border: hsl(225, 25%, 18%);
  --popover-foreground: hsl(220, 15%, 70%);
  
  /* Brand Colors */
  --gold: hsl(38, 45%, 65%);
  --gold-light: hsl(38, 50%, 78%);
  --gold-dark: hsl(38, 40%, 55%);
  --deep-navy: hsl(225, 60%, 11%);
  
  /* Gradients */
  --gradient-hero: linear-gradient(180deg, hsl(225, 60%, 3%) 0%, hsl(225, 60%, 8%) 100%);
  --gradient-gold: linear-gradient(135deg, hsl(38, 45%, 65%) 0%, hsl(38, 50%, 78%) 100%);
  --gradient-card: linear-gradient(180deg, hsl(225, 40%, 8%) 0%, hsl(225, 40%, 5%) 100%);
  
  /* Shadows */
  --shadow-gold: 0 0 60px hsla(38, 45%, 65%, 0.2);
  --shadow-card: 0 25px 50px -12px hsla(225, 60%, 3%, 0.5);
  --shadow-button: 0 4px 14px hsla(38, 45%, 65%, 0.25);
  
  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  
  /* Spacing */
  --radius: 0.5rem;
  --container-max: 1200px;
  --container-narrow: 768px;
  --container-medium: 896px;
}


/* ================================================
   BASE RESET & DEFAULTS
   ================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.3;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul, ol {
  list-style: none;
}


/* ================================================
   LAYOUT: CONTAINER
   ================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow {
  max-width: var(--container-narrow);
}

.container--medium {
  max-width: var(--container-medium);
}


/* ================================================
   UTILITIES
   ================================================ */
.text-center { text-align: center; }
.gold-text { color: var(--gold); }
.muted { color: var(--muted-foreground); }
.italic { font-style: italic; }
.font-medium { font-weight: 500; }


/* ================================================
   ICONS (SVG)
   ================================================ */
.icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.icon--medium {
  width: 1.5rem;
  height: 1.5rem;
}


/* ================================================
   CTA BUTTONS
   ================================================ */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: calc(var(--radius) + 0.25rem);
  height: 3.5rem;
  padding: 0 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--background);
  background-color: var(--gold);
  box-shadow: var(--shadow-button);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background-color: var(--gold-light);
  box-shadow: 0 6px 20px hsla(38, 45%, 65%, 0.35);
}

.cta-button:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.cta-button-strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: calc(var(--radius) + 0.25rem);
  height: 4rem;
  padding: 0 3rem;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-body);
  color: var(--background);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  box-shadow: 0 8px 30px hsla(38, 45%, 65%, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button-strong:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px hsla(38, 45%, 65%, 0.4);
}


/* ================================================
   SECTION SHARED STYLES
   ================================================ */
section {
  padding: 5rem 0;
}

.section-label {
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-align: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 1rem;
  text-align: center;
}

.section-intro {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  section {
    padding: 7rem 0;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
}


/* ================================================
   BULLET LISTS
   ================================================ */
.bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.5rem;
}


/* ================================================
   HERO SECTION
   ================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: var(--gradient-hero);
  padding: 4rem 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-glow {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: hsla(38, 45%, 65%, 0.05);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  order: 2;
  text-align: center;
}

.hero-image {
  order: 1;
  display: flex;
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero-section {
    padding: 6rem 0;
  }
  
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
  
  .hero-content {
    order: 1;
    text-align: left;
  }
  
  .hero-image {
    order: 2;
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--foreground);
}

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

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

.hero-subtitle {
  margin-top: 2rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--muted-foreground);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1024px) {
  .hero-subtitle {
    font-size: 1.25rem;
    margin-left: 0;
  }
}

.hero-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
  text-align: left;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1024px) {
  .hero-benefits {
    margin-left: 0;
  }
}

.hero-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1.125rem;
  color: var(--foreground);
}

.hero-cta-block {
  margin-top: 3rem;
}

.guarantee-micro {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--popover-foreground);
}

@media (min-width: 1024px) {
  .guarantee-micro {
    text-align: left;
  }
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

@media (min-width: 1024px) {
  .trust-bar {
    justify-content: flex-start;
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

/* Hero Image */
.image-wrapper {
  position: relative;
  width: 18rem;
}

@media (min-width: 768px) {
  .image-wrapper {
    width: 20rem;
  }
}

@media (min-width: 1024px) {
  .image-wrapper {
    width: 24rem;
  }
}

.hero-portrait {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.image-overlay {
  position: absolute;
  inset: 0;
  border-radius: 0.75rem;
  background: linear-gradient(to top, hsla(225, 60%, 3%, 0.3), transparent, transparent);
  pointer-events: none;
}

.image-glow {
  position: absolute;
  inset: -1rem;
  border-radius: 1rem;
  background: hsla(38, 45%, 65%, 0.05);
  filter: blur(24px);
  z-index: -1;
}


/* ================================================
   CONTINUITY LINE
   ================================================ */
.continuity-line {
  background-color: var(--card);
  padding: 1rem 0;
  border-top: 1px solid hsla(225, 25%, 18%, 0.3);
  border-bottom: 1px solid hsla(225, 25%, 18%, 0.3);
}

.continuity-content {
  text-align: center;
  font-size: 0.875rem;
  color: var(--gold-light);
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

@media (min-width: 768px) {
  .continuity-content {
    font-size: 1rem;
  }
}


/* ================================================
   THIS IS FOR YOU SECTION
   ================================================ */
.this-is-for-you-section {
  background-color: var(--background);
}

.for-you-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

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

.for-you-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.for-you-card p {
  color: var(--foreground);
  font-size: 1rem;
}


/* ================================================
   WHAT YOU GET SECTION
   ================================================ */
.what-you-get-section {
  background-color: var(--card);
}

.features-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

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

.feature-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color 0.3s ease;
}

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

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--muted-foreground);
  font-size: 0.9375rem;
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}


/* ================================================
   COMPANION TOOLS SECTION
   ================================================ */
.companion-tools-section {
  background-color: var(--background);
}

.tools-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

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

.tool-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.tool-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.tool-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.tool-card p {
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.tools-note {
  text-align: center;
  margin-top: 2rem;
  color: var(--muted-foreground);
  font-size: 0.9375rem;
}


/* ================================================
   QUICK START SECTION
   ================================================ */
.quick-start-section {
  background-color: var(--card);
}

.steps-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

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

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 50%;
  margin-bottom: 1.25rem;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.step-card p {
  color: var(--muted-foreground);
  font-size: 0.9375rem;
}


/* ================================================
   WHY OTHERS FAIL SECTION
   ================================================ */
.why-others-fail-section {
  background-color: var(--background);
}

.fail-content {
  max-width: 40rem;
  margin: 2.5rem auto 0;
}

.fail-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.fail-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--muted-foreground);
}

.x-icon {
  color: hsla(0, 60%, 50%, 0.7);
  font-weight: 600;
  flex-shrink: 0;
}

.solution-block {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.solution-block p {
  color: var(--foreground);
  font-size: 1rem;
}


/* ================================================
   SOCIAL PROOF SECTION
   ================================================ */
.social-proof-section {
  background-color: var(--card);
}

.quotes-container {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

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

.testimonial-quote {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  font-style: italic;
  color: var(--foreground);
  font-size: 1rem;
  line-height: 1.6;
}

.outcomes-container {
  margin-top: 3rem;
  text-align: center;
}

.outcomes-label {
  font-size: 0.875rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.outcomes-list {
  display: inline-flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.outcomes-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--muted-foreground);
}


/* ================================================
   I AM TECHNIQUE SECTION
   ================================================ */
.iam-technique-section {
  background-color: var(--background);
}

.technique-content {
  max-width: 48rem;
  margin: 0 auto;
}

.technique-intro {
  text-align: center;
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-top: 1.5rem;
}

.technique-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .technique-steps {
    flex-direction: row;
  }
}

.technique-step {
  flex: 1;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.step-letter {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  background: var(--background);
  border-radius: var(--radius);
  flex-shrink: 0;
}

.technique-step h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.technique-step p {
  color: var(--muted-foreground);
  font-size: 0.9375rem;
}


/* ================================================
   WHO IS FOR SECTION
   ================================================ */
.who-section {
  background-color: var(--card);
}

.who-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

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

.who-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.who-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.who-for h3 {
  color: var(--gold);
}

.who-not-for h3 {
  color: var(--muted-foreground);
}

.who-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.who-card li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--muted-foreground);
}

.who-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.who-for li::before {
  background-color: var(--gold);
}

.who-not-for li::before {
  background-color: var(--muted-foreground);
}


/* ================================================
   FAQ SECTION
   ================================================ */
.faq-section {
  background-color: var(--background);
}

.faq-list {
  max-width: 48rem;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.faq-question {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.faq-answer {
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  line-height: 1.6;
}


/* ================================================
   FINAL CTA SECTION
   ================================================ */
.final-cta-section {
  background-color: var(--card);
  padding: 6rem 0;
}

@media (min-width: 768px) {
  .final-cta-section {
    padding: 8rem 0;
  }
}

.final-cta-section .container {
  max-width: 48rem;
  text-align: center;
}

.final-cta-section .section-title {
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .final-cta-section .section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .final-cta-section .section-title {
    font-size: 3rem;
  }
}

.final-cta-block {
  margin-top: 3rem;
}

.final-price {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.final-price-note {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.final-trust {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.guarantee-block {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid hsla(225, 25%, 18%, 0.3);
}

.guarantee-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.guarantee-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  max-width: 28rem;
  margin: 0 auto;
}


/* ================================================
   FOOTER
   ================================================ */
.site-footer {
  background-color: var(--background);
  padding: 3rem 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.footer-copy {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.footer-note {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  opacity: 0.7;
}


/* ================================================
   ANIMATIONS (Optional)
   ================================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}
