:root {
  --wine: #7D2E46;
  --wine-light: #9B3F5A;
  --cream: #FAF7F2;
  --cream-dark: #F0EAE0;
  --charcoal: #1C1A19;
  --warm-gray: #8A8279;
  --light-gray: #C4BEB5;
  --rose: #F2E8EC;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 48px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(125,46,70,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  flex: 1;
  max-width: 580px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wine);
  background: var(--rose);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 500;
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-lede {
  font-size: 18px;
  color: var(--warm-gray);
  line-height: 1.7;
  max-width: 480px;
  font-weight: 300;
}

.hero-visual {
  flex: 0 0 auto;
  margin-left: 80px;
  display: flex;
  align-items: center;
}

.phone-mockup {
  width: 280px;
  background: var(--charcoal);
  border-radius: 36px;
  padding: 16px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.15), 0 8px 24px rgba(0,0,0,0.1);
}

.phone-screen {
  background: #fff;
  border-radius: 26px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-bubble {
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 13px;
  line-height: 1.4;
  max-width: 85%;
}

.chat-bubble.incoming {
  background: #F0F0F0;
  color: var(--charcoal);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-bubble.outgoing {
  background: var(--wine);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.charm-suggestion {
  background: var(--cream-dark);
  border: 1.5px solid var(--wine);
  border-radius: 18px;
  border-bottom-left-radius: 4px;
  padding: 10px 14px;
  align-self: flex-start;
  max-width: 90%;
}

.charm-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wine);
  display: block;
  margin-bottom: 4px;
}

.suggestion-text {
  font-size: 13px;
  color: var(--charcoal);
  font-style: italic;
  font-family: var(--font-display);
}

/* Features */
.features {
  padding: 100px 48px;
  background: var(--cream-dark);
}

.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.features-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 16px;
  color: var(--warm-gray);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 36px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--rose);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wine);
  margin-bottom: 20px;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.6;
  font-weight: 300;
}

/* Differentiator */
.diff {
  padding: 100px 48px;
  background: var(--charcoal);
  color: var(--cream);
}

.diff-inner {
  max-width: 900px;
  margin: 0 auto;
}

.diff-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wine-light);
  margin-bottom: 20px;
}

.diff-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.diff-body {
  font-size: 18px;
  color: var(--light-gray);
  line-height: 1.7;
  max-width: 600px;
  font-weight: 300;
  margin-bottom: 64px;
}

.diff-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 48px;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 500;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: var(--warm-gray);
  line-height: 1.5;
}

/* Closing */
.closing {
  padding: 100px 48px;
  background: var(--rose);
  text-align: center;
}

.closing-inner {
  max-width: 640px;
  margin: 0 auto;
}

.closing-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 40px;
  line-height: 1.4;
}

.closing-cta p {
  font-size: 16px;
  color: var(--wine);
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Footer */
.footer {
  padding: 32px 48px;
  background: var(--cream);
  border-top: 1px solid rgba(0,0,0,0.06);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--charcoal);
}

.footer-tagline {
  font-size: 13px;
  color: var(--warm-gray);
}

.footer-links span {
  font-size: 13px;
  color: var(--warm-gray);
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    padding: 60px 24px;
    min-height: auto;
    gap: 48px;
  }

  .hero-inner { max-width: 100%; }
  .hero-visual { margin-left: 0; }
  .phone-mockup { width: 240px; }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .diff-stats {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 500px) {
  .hero { padding: 48px 20px; }
  .features { padding: 64px 20px; }
  .diff { padding: 64px 20px; }
  .closing { padding: 64px 20px; }
  .footer { padding: 24px 20px; }
  .phone-mockup { width: 200px; }
}

/* ================================
   Buttons (global)
================================ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 12px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  letter-spacing: 0.01em;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--wine);
  color: #fff;
}
.btn-secondary {
  background: transparent;
  color: var(--wine);
  border: 1.5px solid var(--wine);
}

/* Hero buttons */
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* ================================
   Live Demo section
================================ */
.demo {
  padding: 100px 48px;
  background: var(--cream);
  scroll-margin-top: 24px;
}
.demo-inner {
  max-width: 860px;
  margin: 0 auto;
}
.demo-header {
  text-align: center;
  margin-bottom: 48px;
}
.demo-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wine);
  background: var(--rose);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.demo-card {
  background: var(--cream-dark);
  border-radius: 24px;
  padding: 48px;
  border: 1px solid rgba(0,0,0,0.05);
}
.demo-inputs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.demo-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.demo-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.01em;
}
.demo-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--charcoal);
  background: #fff;
  resize: vertical;
  transition: border-color 0.15s ease;
  line-height: 1.5;
}
.demo-textarea:focus {
  outline: none;
  border-color: var(--wine);
}
.btn-demo {
  align-self: flex-start;
  font-size: 16px;
  padding: 16px 32px;
}
.demo-disclaimer {
  font-size: 12px;
  color: var(--warm-gray);
  margin-top: -8px;
}
.demo-results {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.results-header {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--warm-gray);
  margin-bottom: 4px;
}
.result-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  border: 1.5px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.15s ease;
}
.result-card:hover { border-color: var(--wine); }
.result-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wine);
}
.result-text {
  font-size: 16px;
  color: var(--charcoal);
  line-height: 1.6;
  font-family: var(--font-display);
  font-style: italic;
}
.copy-btn {
  align-self: flex-end;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--warm-gray);
  background: none;
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  padding: 5px 12px;
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.copy-btn:hover { color: var(--wine); border-color: var(--wine); }
.demo-cta-nudge {
  margin-top: 8px;
  padding: 20px 24px;
  background: var(--rose);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.demo-cta-nudge p {
  font-size: 14px;
  color: var(--charcoal);
  flex: 1;
  line-height: 1.5;
}
.demo-error {
  margin-top: 16px;
  padding: 12px 16px;
  background: #fee2e2;
  border-radius: 10px;
  color: #b91c1c;
  font-size: 14px;
}

/* ================================
   How Charm Helps
================================ */
.how-it-helps {
  padding: 100px 48px;
  background: var(--cream-dark);
}
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.how-header {
  text-align: center;
  margin-bottom: 60px;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.how-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.how-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.how-icon {
  width: 52px;
  height: 52px;
  background: var(--rose);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wine);
  margin-bottom: 20px;
}
.how-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.how-desc {
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.65;
  font-weight: 300;
}

/* ================================
   Founder Note
================================ */
.founder {
  padding: 100px 48px;
  background: var(--cream);
}
.founder-inner {
  max-width: 680px;
  margin: 0 auto;
}
.founder-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 28px;
}
.founder-text {
  font-size: 17px;
  color: var(--charcoal);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 20px;
}
.founder-sign {
  color: var(--wine);
  font-style: italic;
  font-family: var(--font-display);
  font-size: 18px;
}

/* ================================
   FAQ
================================ */
.faq {
  padding: 100px 48px;
  background: var(--cream-dark);
}
.faq-inner {
  max-width: 720px;
  margin: 0 auto;
}
.faq-inner .section-title {
  text-align: center;
  margin-bottom: 48px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  background: #fff;
  border: none;
  padding: 22px 28px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--charcoal);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.15s ease;
}
.faq-question:hover { background: var(--cream); }
.faq-item.open .faq-question { background: var(--cream); }
.faq-icon {
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 300;
  color: var(--wine);
  line-height: 1;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  background: var(--cream);
}
.faq-answer p {
  padding: 0 28px 22px;
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.7;
  font-weight: 300;
}

/* ================================
   Waitlist CTA section
================================ */
.waitlist-section {
  padding: 100px 48px;
  background: var(--charcoal);
  scroll-margin-top: 24px;
}
.waitlist-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.waitlist-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.waitlist-sub {
  font-size: 16px;
  color: var(--light-gray);
  line-height: 1.6;
  margin-bottom: 40px;
  font-weight: 300;
}
.waitlist-row {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.waitlist-input {
  flex: 1;
  max-width: 300px;
  padding: 14px 18px;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--cream);
  background: rgba(255,255,255,0.07);
  transition: border-color 0.15s ease;
}
.waitlist-input::placeholder { color: var(--warm-gray); }
.waitlist-input:focus {
  outline: none;
  border-color: var(--wine-light);
  background: rgba(255,255,255,0.1);
}
.btn-join {
  white-space: nowrap;
  padding: 14px 28px;
}
.waitlist-error {
  margin-top: 12px;
  font-size: 14px;
  color: #fca5a5;
}
.waitlist-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}
.success-icon {
  width: 48px;
  height: 48px;
  background: var(--wine);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 500;
}
.success-text {
  font-size: 16px;
  color: var(--light-gray);
  line-height: 1.6;
  max-width: 400px;
}

/* Footer links */
.footer-link {
  font-size: 13px;
  color: var(--warm-gray);
  text-decoration: none;
  transition: color 0.15s ease;
}
.footer-link:hover { color: var(--wine); }
.footer-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* ================================
   Responsive additions
================================ */
@media (max-width: 900px) {
  .demo { padding: 64px 24px; }
  .demo-card { padding: 32px 24px; }
  .demo-cta-nudge { flex-direction: column; }
  .how-it-helps { padding: 64px 24px; }
  .how-grid { grid-template-columns: 1fr; }
  .founder { padding: 64px 24px; }
  .faq { padding: 64px 24px; }
  .waitlist-section { padding: 64px 24px; }
  .waitlist-row { flex-direction: column; align-items: center; }
  .waitlist-input { max-width: 100%; }
}

@media (max-width: 500px) {
  .demo { padding: 48px 20px; }
  .demo-card { padding: 24px 16px; }
  .how-it-helps { padding: 48px 20px; }
  .founder { padding: 48px 20px; }
  .faq { padding: 48px 20px; }
  .waitlist-section { padding: 48px 20px; }
  .hero-actions { flex-direction: column; }
  .btn { text-align: center; }
}

/* ================================
   Screenshot Draft Card
================================ */
.screenshot-card {
  margin-top: 32px;
  background: var(--charcoal);
  border-radius: 24px;
  padding: 48px;
  border: 1px solid rgba(255,255,255,0.06);
}
.screenshot-header {
  text-align: center;
  margin-bottom: 32px;
}
.screenshot-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wine-light);
  background: rgba(125,46,70,0.2);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.screenshot-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.screenshot-sub {
  font-size: 15px;
  color: var(--light-gray);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 300;
}
.screenshot-upload-area {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.screenshot-drop-zone {
  width: 100%;
  max-width: 480px;
  border: 2px dashed rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  text-align: center;
}
.screenshot-drop-zone:hover,
.screenshot-drop-zone.dragging {
  border-color: var(--wine-light);
  background: rgba(125,46,70,0.08);
}
.screenshot-icon {
  color: var(--wine-light);
  opacity: 0.7;
}
.screenshot-hint {
  font-size: 15px;
  font-weight: 500;
  color: var(--cream);
}
.screenshot-formats {
  font-size: 12px;
  color: var(--warm-gray);
}
.screenshot-preview {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}
.preview-img {
  width: 100%;
  border-radius: 12px;
  display: block;
  border: 2px solid rgba(255,255,255,0.1);
}
.preview-remove {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-draft {
  display: block;
  width: 100%;
  max-width: 480px;
  margin: 0 auto 20px;
  font-size: 16px;
  padding: 16px 32px;
  background: var(--wine-light);
  color: #fff;
  text-align: center;
}
.btn-draft:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}
.screenshot-error {
  max-width: 480px;
  margin: 0 auto 16px;
  padding: 12px 16px;
  background: rgba(220, 38, 38, 0.15);
  border-radius: 10px;
  color: #fca5a5;
  font-size: 14px;
  text-align: center;
}
.draft-results {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.draft-vibe-tag {
  display: inline-block;
  align-self: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wine-light);
  background: rgba(125,46,70,0.15);
  padding: 4px 14px;
  border-radius: 20px;
}
.draft-conversation {
  text-align: center;
  font-size: 13px;
  color: var(--light-gray);
  font-style: italic;
  font-family: var(--font-display);
  line-height: 1.5;
  padding: 0 8px;
}
.draft-header {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--warm-gray);
  margin-top: 4px;
}
.draft-card {
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 18px 22px;
  border: 1.5px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.15s ease;
}
.draft-card:hover { border-color: rgba(155,63,90,0.4); }
.draft-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wine-light);
}
.draft-text {
  font-size: 15px;
  color: var(--cream);
  line-height: 1.6;
  font-family: var(--font-display);
  font-style: italic;
}
.draft-cta-nudge {
  margin-top: 4px;
  padding: 18px 22px;
  background: rgba(242,232,236,0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.draft-cta-nudge p {
  font-size: 14px;
  color: var(--light-gray);
  flex: 1;
  line-height: 1.5;
}
.draft-cta-nudge .btn-primary {
  background: var(--wine);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .screenshot-card { padding: 32px 24px; }
}
@media (max-width: 500px) {
  .screenshot-card { padding: 24px 16px; }
  .screenshot-drop-zone { padding: 28px 16px; }
  .draft-cta-nudge { flex-direction: column; }
}

/* ================================
   Voice Profile — Hero mockup addition
================================ */
.voice-sig-preview {
  background: var(--rose);
  border: 1.5px solid var(--wine);
  border-radius: 12px;
  padding: 10px 14px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.voice-sig-preview-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wine);
}
.voice-sig-preview-text {
  font-size: 12px;
  color: var(--charcoal);
  font-style: italic;
  font-family: var(--font-display);
}

/* ================================
   Voice Profile — Step indicator
================================ */
.voice-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
}
.voice-step {
  display: flex;
  align-items: center;
  gap: 8px;
}
.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream-dark);
  border: 2px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--warm-gray);
  transition: all 0.2s ease;
}
.step-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--warm-gray);
  transition: color 0.2s ease;
}
.voice-step.active .step-num {
  background: var(--wine);
  border-color: var(--wine);
  color: #fff;
}
.voice-step.active .step-label { color: var(--charcoal); }
.voice-step-divider {
  width: 48px;
  height: 2px;
  background: var(--light-gray);
  margin: 0 12px;
  flex-shrink: 0;
}

/* ================================
   Voice Profile — Step cards
================================ */
.step-intro {
  margin-bottom: 28px;
}
.step-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 10px;
}
.step-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.step-desc {
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.65;
  font-weight: 300;
  max-width: 540px;
}
.field-hint {
  font-size: 12px;
  color: var(--warm-gray);
  margin-top: 6px;
}
.btn-step {
  margin-top: 8px;
  font-size: 16px;
  padding: 16px 32px;
}
.step2-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.btn-outline-sm {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 10px;
  cursor: pointer;
  background: transparent;
  color: var(--warm-gray);
  border: 1.5px solid var(--light-gray);
  transition: color 0.15s ease, border-color 0.15s ease;
  text-decoration: none;
}
.btn-outline-sm:hover { color: var(--charcoal); border-color: var(--charcoal); }

/* ================================
   Voice Profile — Results
================================ */
.voice-results {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.voice-signature-box {
  background: linear-gradient(135deg, var(--wine) 0%, var(--wine-light) 100%);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.voice-sig-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.voice-sig-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: #fff;
  line-height: 1.4;
}
.results-subhead {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--warm-gray);
}
.voice-result-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.voice-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  border: 1.5px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.15s ease;
}
.voice-card:hover { border-color: var(--wine); }
.voice-card-traits {
  display: inline-flex;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wine);
  background: var(--rose);
  padding: 3px 10px;
  border-radius: 20px;
}
.voice-card-text {
  font-size: 16px;
  color: var(--charcoal);
  line-height: 1.6;
  font-family: var(--font-display);
  font-style: italic;
}

@media (max-width: 900px) {
  .voice-step-divider { width: 28px; }
  .step2-actions { gap: 10px; }
}
@media (max-width: 500px) {
  .voice-steps { gap: 0; }
  .step2-actions { flex-direction: column; align-items: stretch; }
  .btn-outline-sm { text-align: center; }
}