@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

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

:root {
  --cream: #FAF8F4;
  --cream-dark: #F2EDE5;
  --gold: #B8954A;
  --gold-light: #E2D0A8;
  --gold-pale: #F5EDD8;
  --gold-dark: #8C6F35;
  --rose: #C0736A;
  --charcoal: #1C1917;
  --charcoal-mid: #3D3530;
  --gray: #7C746F;
  --gray-light: #EDE8E3;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 12px rgba(28,25,23,0.06);
  --shadow: 0 8px 32px rgba(28,25,23,0.10);
  --shadow-lg: 0 20px 60px rgba(28,25,23,0.14);
  --radius: 4px;
  --radius-lg: 8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  min-height: 100vh;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.delay-1 { animation-delay: 0.08s; }
.delay-2 { animation-delay: 0.16s; }
.delay-3 { animation-delay: 0.24s; }
.delay-4 { animation-delay: 0.32s; }
.delay-5 { animation-delay: 0.40s; }

/* ── Nav ── */
nav {
  padding: 22px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--cream);
  border-bottom: 1px solid var(--gold-light);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: 0.5px;
}

.nav-logo span {
  color: var(--gold);
  font-style: italic;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--charcoal); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 32px;
  border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--charcoal);
  background-image: linear-gradient(var(--gold), var(--gold));
  background-size: 0% 100%;
  background-repeat: no-repeat;
  background-position: left center;
  color: var(--cream);
  transition: background-size 0.35s cubic-bezier(0.22, 1, 0.36, 1), color 0.25s;
}

.btn-primary:hover {
  background-size: 100% 100%;
  color: var(--charcoal);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
}

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--cream);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
}

.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.btn-large { padding: 17px 44px; font-size: 0.88rem; }
.btn-full  { width: 100%; }

/* ── Divider ── */
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 auto;
  max-width: 120px;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold-light);
}

.divider-diamond {
  color: var(--gold);
  font-size: 0.6rem;
}

/* ── Section Labels ── */
.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

/* ── Hero ── */
.hero {
  padding: 100px 48px 80px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content { max-width: 560px; }

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 4.4rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--charcoal);
  letter-spacing: -0.5px;
}

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

.hero-sub {
  font-size: 1.05rem;
  color: var(--gray);
  font-weight: 300;
  margin-bottom: 40px;
  line-height: 1.75;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-note {
  font-size: 0.78rem;
  color: var(--gray);
  letter-spacing: 0.5px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.speech-card-preview {
  background: var(--white);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.speech-card-preview::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  color: var(--gold-light);
  line-height: 1;
}

.speech-tag {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.speech-tag span {
  background: var(--gold-pale);
  padding: 4px 10px;
  border-radius: 2px;
}

.speech-card-preview p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--charcoal-mid);
  font-style: italic;
}

.card-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-footer span {
  font-size: 0.78rem;
  color: var(--gray);
  letter-spacing: 0.5px;
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--charcoal);
  padding: 18px 48px;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
}

.stat-item strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold-light);
}

.stat-item span {
  font-size: 0.8rem;
  color: rgba(250,248,244,0.6);
  letter-spacing: 0.5px;
}

/* ── Roles Section ── */
.roles-section {
  padding: 80px 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--gray);
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto;
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.role-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-decoration: none;
  color: var(--charcoal);
  transition: all 0.25s ease;
  display: block;
  position: relative;
  overflow: hidden;
}

.role-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.role-card:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.role-card:hover::after { transform: scaleX(1); }

.role-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: block;
}

.role-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.role-card p {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.5;
}

.role-card .role-arrow {
  position: absolute;
  top: 28px;
  right: 28px;
  color: var(--gold-light);
  font-size: 1.1rem;
  transition: transform 0.2s, color 0.2s;
}

.role-card:hover .role-arrow {
  transform: translateX(4px);
  color: var(--gold);
}

/* ── How It Works ── */
.how-section {
  background: var(--charcoal);
  padding: 80px 48px;
}

.how-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.how-section .section-header h2,
.how-section .eyebrow { color: var(--cream); }
.how-section .section-header h2 em { color: var(--gold-light); font-style: italic; }
.how-section .section-header p { color: rgba(250,248,244,0.55); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.step-item {
  padding: 40px 32px;
  background: rgba(28,25,23,0.4);
  position: relative;
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 16px;
}

.step-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 10px;
}

.step-item p {
  font-size: 0.88rem;
  color: rgba(250,248,244,0.5);
  font-weight: 300;
  line-height: 1.6;
}

/* ── Testimonials ── */
.testimonials-section {
  padding: 80px 48px;
  max-width: 1100px;
  margin: 0 auto;
}

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

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--charcoal-mid);
  margin-bottom: 20px;
}

.testimonial-author {
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ── Pricing ── */
.pricing-section {
  background: var(--cream-dark);
  padding: 80px 48px;
}

.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.pricing-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.15;
}

.pricing-left p {
  color: var(--gray);
  font-weight: 300;
  margin-bottom: 32px;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow);
}

.price-display {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
}

.price-sup {
  font-family: 'Jost', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--charcoal);
  align-self: flex-start;
  margin-top: 10px;
}

.price-note {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

.features-list {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--charcoal-mid);
}

.features-list li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 1.5px solid var(--gold);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%23B8954A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ── FAQ Section ── */
.faq-section {
  padding: 80px 48px;
  max-width: 780px;
  margin: 0 auto;
}

.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--gray-light);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-question h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.4;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1rem;
  transition: all 0.2s;
}

.faq-item.open .faq-icon {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 0 24px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.75;
  font-size: 0.95rem;
}

.faq-item.open .faq-answer { display: block; }

/* ── Role Landing Page ── */
.role-hero {
  padding: 80px 48px 60px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.role-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 20px;
}

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

.role-hero p {
  font-size: 1.05rem;
  color: var(--gray);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 36px;
}

.role-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 48px 80px;
}

.role-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 400;
  margin: 48px 0 16px;
}

.role-content p {
  color: var(--gray);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 16px;
}

.role-content ul {
  list-style: none;
  margin-bottom: 24px;
}

.role-content ul li {
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  color: var(--charcoal-mid);
  font-size: 0.95rem;
  line-height: 1.6;
}

.role-content ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ── Form ── */
.form-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.form-header {
  text-align: center;
  margin-bottom: 48px;
}

.form-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.form-header p { color: var(--gray); font-weight: 300; }

/* Progress */
.progress-wrap { margin-bottom: 48px; }

.progress-bar-bg {
  background: var(--gray-light);
  height: 2px;
  margin-bottom: 16px;
}

.progress-bar-fill {
  height: 100%;
  background: var(--gold);
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-light);
}

.progress-labels .active { color: var(--gold); }

/* Steps */
.form-step { display: none; }
.form-step.active { display: block; animation: fadeUp 0.4s ease forwards; }

.role-extras { display: none; margin-top: 28px; }
.role-extras.visible { display: block; animation: fadeUp 0.3s ease forwards; }
.role-extras-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}
.role-extras-label::before,
.role-extras-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold-light);
}

.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 6px;
}

.step-subtitle {
  color: var(--gray);
  font-weight: 300;
  margin-bottom: 32px;
  font-size: 0.95rem;
}

/* Fields */
.field { margin-bottom: 20px; }

label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}

input[type="text"],
textarea,
select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

input[type="text"]:focus,
textarea:focus,
select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-pale);
}

textarea { resize: vertical; min-height: 110px; line-height: 1.6; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Option Cards */
.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
}

.option-card {
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 18px 14px;
  text-align: center;
  cursor: pointer;
  transition: all 0.18s;
  background: var(--white);
}

.option-card:hover { border-color: var(--gold-light); background: var(--gold-pale); }

.option-card.selected {
  border-color: var(--gold);
  background: var(--charcoal);
  color: var(--cream);
}

.option-card .icon { font-size: 1.5rem; margin-bottom: 8px; display: block; }
.option-card .label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.5px; }
.option-card .sub { font-size: 0.72rem; opacity: 0.65; margin-top: 4px; line-height: 1.3; }

input[type="hidden"].option-value { display: none; }

/* Form Nav */
.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-light);
}

.btn-back {
  background: none;
  border: none;
  color: var(--gray);
  cursor: pointer;
  font-size: 0.8rem;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 0;
  transition: color 0.2s;
}

.btn-back:hover { color: var(--charcoal); }

/* Loading */
.generating {
  text-align: center;
  padding: 80px 24px;
  min-height: calc(100vh - 160px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.generating h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.generating p { color: var(--gray); font-weight: 300; }

.spinner {
  width: 40px;
  height: 40px;
  border: 2px solid var(--gold-light);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  margin: 32px auto;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ── Preview ── */
.preview-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.preview-header {
  text-align: center;
  margin-bottom: 44px;
}

.preview-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.speech-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow);
  margin-bottom: 32px;
}

.speech-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-light);
}

.speech-meta span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-pale);
  padding: 5px 12px;
  border-radius: 2px;
}

.speech-preview-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--charcoal-mid);
  font-style: italic;
}

.blur-overlay {
  position: relative;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px dashed var(--gold-light);
}

.blur-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.98) 55%);
  z-index: 1;
  pointer-events: none;
}

.blur-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--charcoal-mid);
  filter: blur(6px);
  user-select: none;
  opacity: 0.6;
  font-style: italic;
}

.unlock-cta {
  background: var(--white);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  text-align: center;
  box-shadow: var(--shadow);
}

.unlock-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 4px;
}

.unlock-desc { color: var(--gray); font-size: 0.88rem; margin-bottom: 24px; font-weight: 300; }

.unlock-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
  display: inline-block;
}

.unlock-features li {
  font-size: 0.88rem;
  color: var(--gray);
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
  font-weight: 300;
}

.unlock-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

/* ── Full Speech ── */
.speech-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.speech-container h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 6px;
}

.speech-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}

.download-dropdown {
  position: relative;
  display: flex;
  flex-direction: column;
}

.download-dropdown .btn {
  width: 100%;
}

.download-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 10;
  overflow: hidden;
}

.download-menu.open {
  display: block;
}

.download-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 0.875rem;
  color: var(--dark);
  text-decoration: none;
  transition: background 0.15s;
}

.download-menu a:hover {
  background: var(--gray-light);
}

.speech-body {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 52px;
  box-shadow: var(--shadow);
  margin-bottom: 32px;
}

.speech-body p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.12rem;
  line-height: 1.95;
  margin-bottom: 24px;
  color: var(--charcoal-mid);
}

.speech-body p:last-child { margin-bottom: 0; }

.speech-tips {
  background: var(--gold-pale);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
}

/* ── Paragraph editing ── */
.para-block {
  position: relative;
  padding: 12px 16px;
  margin: 0 -16px 8px;
  border-radius: var(--radius);
  transition: background 0.2s;
}

.para-block:hover { background: var(--gold-pale); }

.para-block p {
  margin-bottom: 0;
}

.para-actions {
  display: none;
  gap: 8px;
  margin-bottom: 8px;
}

.para-block.para-active .para-actions {
  display: flex;
}

.para-btn {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  padding: 5px 14px;
  transition: all 0.18s;
  border: 1px solid var(--gold-light);
  background: var(--white);
  color: var(--gold-dark);
}

.para-btn:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

.btn-action-save { background: var(--charcoal); color: var(--cream); border-color: var(--charcoal); }
.btn-action-save:hover { background: var(--gold); border-color: var(--gold); color: var(--charcoal); }

.para-edit-wrap { margin-top: 12px; }

.para-textarea {
  width: 100%;
  min-height: 120px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--charcoal-mid);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  padding: 12px 16px;
  resize: vertical;
  background: var(--white);
  outline: none;
}

.para-textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-pale); }

.para-edit-btns,
.para-rewrite-btns { display: flex; gap: 8px; margin-top: 10px; }

.para-rewrite-wrap { margin-top: 12px; }

.para-direction-input {
  width: 100%;
  padding: 10px 14px;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--charcoal);
  outline: none;
  margin-bottom: 0;
}

.para-direction-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-pale); }

.para-spinner {
  width: 22px;
  height: 22px;
  border: 2px solid var(--gold-light);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-top: 10px;
}

.speech-tips h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 18px;
  color: var(--charcoal);
}

.speech-tips ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.speech-tips li {
  font-size: 0.88rem;
  color: var(--charcoal-mid);
  padding-left: 20px;
  position: relative;
  font-weight: 300;
  line-height: 1.5;
}

.speech-tips li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

/* ── Footer ── */
footer {
  background: var(--charcoal);
  padding: 48px;
}

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

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--cream);
  text-decoration: none;
}

.footer-logo span { color: var(--gold-light); font-style: italic; }

.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.footer-links a {
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(250,248,244,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-copy {
  font-size: 0.78rem;
  color: rgba(250,248,244,0.3);
  letter-spacing: 0.3px;
}

/* ── Feedback Widget ── */
.feedback-widget {
  margin-top: 80px;
  padding: 28px 32px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  text-align: center;
}

.feedback-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 14px;
}

.star-row {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.star {
  font-size: 2rem;
  color: var(--gray-light);
  cursor: pointer;
  transition: color 0.15s, transform 0.15s;
  line-height: 1;
  user-select: none;
}

.star:hover,
.star.active {
  color: var(--gold);
  transform: scale(1.15);
}

.feedback-thanks-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--charcoal-mid);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px 48px; }
  .hero-visual { display: none; }
  .roles-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-inner { grid-template-columns: 1fr; gap: 40px; }
  nav { padding: 18px 24px; }
  .nav-links { display: none; }
  .stats-bar { gap: 28px; padding: 16px 24px; }
  .roles-section, .how-section, .testimonials-section, .pricing-section, .faq-section { padding: 60px 24px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .role-content { padding: 0 24px 60px; }
  .role-hero { padding: 60px 24px 48px; }
  .speech-body { padding: 28px 24px; }
  .support-card { padding: 28px 20px; }
  .unlock-cta { padding: 32px 24px; }
  .speech-tips { padding: 24px 20px; }
  footer { padding: 32px 20px; }
}

@media (max-width: 600px) {
  .roles-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .option-grid { grid-template-columns: repeat(2, 1fr); }
  .speech-actions { grid-template-columns: 1fr; }
  .form-container { padding: 32px 16px 60px; }
}
