/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--sp-5xl) var(--sp-2xl) var(--sp-5xl);
  position: relative;
  overflow: hidden;
}

/* Ambient glow — signature Prezly atmosphere */
.hero::before {
  content: '';
  position: absolute;
  top: 35%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: 0.06;
  filter: blur(120px);
  pointer-events: none;
  animation: glowPulse 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  top: 60%;
  left: 30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #2D6A6A 0%, transparent 70%);
  opacity: 0.04;
  filter: blur(100px);
  pointer-events: none;
}

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

.hero-logo {
  width: 72px;
  height: auto;
  margin: 0 auto var(--sp-2xl);
  opacity: 0.9;
  filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.15));
}

.hero h1 {
  font-size: 56px;
  margin-bottom: var(--sp-2xl);
}

.hero-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 420px;
  margin: 0 auto var(--sp-4xl);
  line-height: 1.8;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: var(--sp-lg);
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Buttons — Stitch style: outlined, wide tracking ──────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  height: 52px;
  padding: 0 var(--sp-3xl);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border-radius: var(--r-xs);
  border: 0.5px solid var(--glass-border);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn svg {
  width: 16px;
  height: 16px;
}

.btn-primary {
  background: var(--text-white);
  color: var(--surface);
  border-color: var(--text-white);
}

.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--surface);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.2);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-secondary);
  border-color: var(--glass-border);
}

.btn-secondary:hover {
  color: var(--text-white);
  border-color: var(--glass-border-hover);
  background: var(--glass);
  transform: translateY(-1px);
}

/* ── Section ──────────────────────────────────────────────── */
.section {
  padding: var(--sp-6xl) var(--sp-2xl);
  position: relative;
}

.section-alt {
  background: var(--surface-dim);
}

.section-header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto var(--sp-5xl);
}

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-lg);
}

.section-header h2 {
  font-style: italic;
  margin-bottom: var(--sp-lg);
}

.section-header p {
  font-size: 14px;
  font-weight: 300;
}

/* ── Features Grid — editorial frames ─────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 960px;
  margin: 0 auto;
  background: var(--glass-border);
  border: 0.5px solid var(--glass-border);
  border-radius: var(--r-xs);
  overflow: hidden;
}

.feature-card {
  background: var(--surface);
  padding: var(--sp-xl) var(--sp-xl);
  transition: background 0.4s ease;
  position: relative;
}

.feature-card:hover {
  background: var(--card);
}

.feature-icon {
  width: 20px;
  height: 20px;
  margin-bottom: var(--sp-md);
  color: var(--accent);
  opacity: 0.7;
}

.feature-card h3 {
  font-size: 16px;
  font-style: italic;
  margin-bottom: var(--sp-xs);
  color: var(--text-white);
}

.feature-card p {
  font-size: 11px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-secondary);
}

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

/* ── How it Works ─────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4xl);
  max-width: 880px;
  margin: 0 auto;
}

.step {
  text-align: center;
  position: relative;
}

/* Connecting line between steps */
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 24px;
  right: -24px;
  width: 48px;
  height: 0.5px;
  background: var(--glass-border);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0.5px solid var(--glass-border);
  border-radius: var(--r-full);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: var(--accent);
  margin-bottom: var(--sp-2xl);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.step:hover .step-number {
  border-color: var(--accent);
  background: rgba(212, 175, 55, 0.05);
}

.step h3 {
  font-size: 18px;
  font-style: italic;
  margin-bottom: var(--sp-sm);
  color: var(--text-white);
}

.step p {
  font-size: 12px;
  font-weight: 300;
  max-width: 240px;
  margin: 0 auto;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .steps { grid-template-columns: 1fr; gap: var(--sp-3xl); }
  .step:not(:last-child)::after { display: none; }
}

/* ── CTA Section ──────────────────────────────────────────── */
.cta-section {
  text-align: center;
  padding: var(--sp-6xl) var(--sp-2xl);
  position: relative;
  overflow: hidden;
}

/* Ambient glow for CTA */
.cta-section::before {
  content: '';
  position: absolute;
  bottom: 20%;
  left: 50%;
  width: 500px;
  height: 400px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: 0.04;
  filter: blur(100px);
  pointer-events: none;
  transform: translateX(-50%);
}

.cta-section h2 {
  font-style: italic;
  margin-bottom: var(--sp-lg);
  position: relative;
}

.cta-section > p {
  font-size: 14px;
  font-weight: 300;
  max-width: 380px;
  margin: 0 auto var(--sp-4xl);
  position: relative;
}

.cta-section .section-label {
  position: relative;
}

.cta-section .hero-cta {
  position: relative;
}

/* Thin accent divider */
.divider {
  width: 40px;
  height: 0.5px;
  background: var(--accent);
  margin: 0 auto var(--sp-2xl);
  opacity: 0.5;
}

/* ── Editorial Quote — for future use ─────────────────────── */
.editorial-quote {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-primary);
  border-left: 0.5px solid var(--accent);
  padding-left: var(--sp-2xl);
  max-width: 480px;
  margin: var(--sp-3xl) auto;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 640px) {
  .hero { padding: var(--sp-4xl) var(--sp-xl) var(--sp-4xl); }
  .hero h1 { font-size: 36px; }
  .hero-logo { width: 60px; margin-bottom: var(--sp-lg); }
  .hero-subtitle { font-size: 13px; margin-bottom: var(--sp-3xl); }
  .section { padding: var(--sp-5xl) var(--sp-xl); }
  .section-header { margin-bottom: var(--sp-4xl); }
  .section-header h2 { font-size: 28px; }
  .steps { gap: var(--sp-2xl); }
  .cta-section { padding: var(--sp-5xl) var(--sp-xl); }
  .btn { height: 48px; padding: 0 var(--sp-2xl); font-size: 9px; }
}
