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

:root {
  --black: #0a0a0a;
  --white: #fafafa;
  --cream: #f5f0eb;
  --warm: #e8ddd3;
  --accent: #c4703f;
  --accent-light: #d4884f;
  --text: #2a2a2a;
  --text-light: #6a6a6a;
  --subtle: #b0a89e;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 24px;
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(196, 112, 63, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(196, 112, 63, 0.05) 0%, transparent 50%);
  animation: drift 20s ease-in-out infinite;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-2%, 1%); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
  font-weight: 600;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 7vw, 80px);
  line-height: 1.1;
  margin-bottom: 30px;
  font-weight: 700;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.7;
  color: rgba(250, 250, 250, 0.65);
  max-width: 620px;
  margin: 0 auto 50px;
  font-weight: 300;
}

.hero-meta {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(250, 250, 250, 0.4);
  letter-spacing: 0.5px;
}

.hero-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-meta .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

.section {
  padding: 100px 24px;
  max-width: 720px;
  margin: 0 auto;
}

.section-wide { max-width: 900px; }

.section-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 600;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  margin-bottom: 30px;
  color: var(--black);
}

p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 20px;
}

p.lead {
  font-size: 20px;
  color: var(--text-light);
  font-weight: 300;
}

.highlight {
  background: linear-gradient(to top, rgba(196, 112, 63, 0.15) 40%, transparent 40%);
  padding: 0 2px;
}

.quote-block {
  background: var(--black);
  color: var(--white);
  padding: 80px 24px;
  text-align: center;
}

.quote-block blockquote {
  max-width: 700px;
  margin: 0 auto;
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3.5vw, 36px);
  font-style: italic;
  line-height: 1.4;
  font-weight: 700;
}

.quote-block .attribution {
  margin-top: 24px;
  font-size: 13px;
  color: rgba(250, 250, 250, 0.4);
  letter-spacing: 1px;
  font-family: 'Inter', sans-serif;
  font-style: normal;
}

.phases {
  padding: 80px 24px;
  max-width: 900px;
  margin: 0 auto;
}

.phase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.phase-card {
  background: white;
  border-radius: 16px;
  padding: 36px 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0,0,0,0.04);
}

.phase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.phase-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--warm);
  line-height: 1;
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
}

.phase-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--black);
}

.phase-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0;
}

.phase-card.featured {
  border: 2px solid var(--accent);
  background: linear-gradient(135deg, white 0%, rgba(196, 112, 63, 0.03) 100%);
}

.phase-card.featured .phase-number { color: var(--accent); }

.output-list { margin-top: 40px; }

.output-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.output-item:last-child { border-bottom: none; }

.output-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  font-weight: 700;
}

.output-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--black);
}

.output-item p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.6;
}

.instructions {
  background: white;
  border-radius: 20px;
  padding: 50px 40px;
  margin-top: 50px;
  border: 1px solid rgba(0,0,0,0.06);
}

.instructions h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--black);
}

.step {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}

.step-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.step-content p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.6;
}

.prompt-section {
  background: var(--black);
  padding: 80px 24px;
  color: var(--white);
}

.prompt-section .section-label { color: var(--accent); }
.prompt-section h2 { color: var(--white); }
.prompt-section p { color: rgba(250, 250, 250, 0.65); }

.prompt-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 36px;
  margin-top: 30px;
  position: relative;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  max-height: 600px;
  overflow-y: auto;
}

.prompt-box::-webkit-scrollbar { width: 6px; }
.prompt-box::-webkit-scrollbar-track { background: transparent; }
.prompt-box::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
}

.prompt-box pre {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(250, 250, 250, 0.8);
  white-space: pre-wrap;
  word-wrap: break-word;
}

.copy-btn {
  position: sticky;
  top: 0;
  float: right;
  background: var(--accent);
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'Inter', sans-serif;
  z-index: 2;
}

.copy-btn:hover { background: var(--accent-light); }

.tip-block {
  background: rgba(196, 112, 63, 0.08);
  border-left: 3px solid var(--accent);
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
  margin: 30px 0;
}

.tip-block p {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 0;
}

.tip-block strong { color: var(--accent); }

.hero-cta {
  display: inline-block;
  margin-top: 40px;
  padding: 16px 40px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.2s;
  font-family: 'Inter', sans-serif;
}

.hero-cta:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

.hero-free {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  color: rgba(250, 250, 250, 0.35);
  letter-spacing: 0.5px;
}

.anchor-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 240, 235, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 12px 24px;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.anchor-nav a {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-light);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 20px;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}

.anchor-nav a:hover {
  color: var(--accent);
  background: rgba(196, 112, 63, 0.08);
}

.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 0.2s;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
  background: var(--accent-light);
}

.footer {
  text-align: center;
  padding: 60px 24px 40px;
  background: var(--black);
  color: rgba(250, 250, 250, 0.3);
  font-size: 13px;
}

.footer a { color: var(--accent); text-decoration: none; }
.footer a:hover { text-decoration: underline; }

.footer .name {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.footer .copyright {
  margin-top: 24px;
  font-size: 12px;
  color: rgba(250, 250, 250, 0.2);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  font-size: 14px;
  font-weight: 600;
  z-index: 9999;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

@media (max-width: 600px) {
  .hero { padding: 40px 20px; }
  .section { padding: 60px 20px; }
  .instructions { padding: 30px 24px; }
  .prompt-box { padding: 24px; }
  .hero-meta { gap: 20px; }
  .phase-grid { grid-template-columns: 1fr; }
  .anchor-nav { gap: 4px; padding: 10px 16px; }
  .anchor-nav a { font-size: 11px; padding: 5px 10px; }
  .back-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; font-size: 18px; }
}

.testimonial-section {
  background: var(--black);
  color: var(--white);
  padding: 80px 24px;
}

.testimonial-card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 28px;
  border: 3px solid var(--accent);
  box-shadow: 0 4px 20px rgba(196, 112, 63, 0.3);
}

.testimonial-card blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 3vw, 28px);
  font-style: italic;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 28px;
}

.testimonial-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.testimonial-title {
  font-size: 13px;
  color: rgba(250, 250, 250, 0.4);
  letter-spacing: 0.5px;
}

html { scroll-behavior: smooth; }