/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { background: #0a0f1a; color: #e8e4dc; font-family: 'DM Sans', sans-serif; font-size: 1rem; line-height: 1.6; overflow-x: hidden; }
::selection { background: #00c896; color: #0a0f1a; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Syne', sans-serif; font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; color: #ffffff; }
p { color: #a8a49c; }

/* ── Layout helpers ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }
.container--narrow { max-width: 860px; margin: 0 auto; padding: 0 2rem; }

/* ── NAV ── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1.25rem 2rem; display: flex; align-items: center; justify-content: space-between; backdrop-filter: blur(12px); background: rgba(10,15,26,0.85); border-bottom: 1px solid rgba(255,255,255,0.05); }
.nav-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.35rem; color: #fff; text-decoration: none; letter-spacing: -0.03em; }
.nav-logo span { color: #00c896; }
.nav-badge { background: rgba(0,200,150,0.12); border: 1px solid rgba(0,200,150,0.25); color: #00c896; font-size: 0.7rem; font-family: 'DM Sans', sans-serif; font-weight: 500; padding: 0.25rem 0.65rem; border-radius: 100px; letter-spacing: 0.05em; text-transform: uppercase; }

/* ── HERO ── */
.hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; gap: 0; position: relative; overflow: hidden; padding-top: 80px; }
.hero-left { padding: 6rem 4rem 6rem 2rem; display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 2; }
.hero-right { display: flex; align-items: center; justify-content: center; position: relative; padding: 4rem 2rem; }
.hero-right::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,200,150,0.06) 0%, transparent 60%); }

.hero-eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; font-weight: 500; color: #00c896; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.5rem; font-family: 'DM Sans', sans-serif; }
.hero-eyebrow::before { content: ''; width: 20px; height: 2px; background: #00c896; border-radius: 2px; }

.hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; color: #fff; margin-bottom: 1.5rem; line-height: 1.05; }
.hero h1 em { font-style: normal; color: #00c896; }

.hero-sub { font-size: 1.1rem; color: #a8a49c; margin-bottom: 2.5rem; max-width: 420px; line-height: 1.7; font-weight: 400; }

.hero-stats { display: flex; gap: 3rem; margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.08); }
.hero-stat-value { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; color: #fff; display: block; line-height: 1; }
.hero-stat-label { font-size: 0.78rem; color: #6b6560; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.4rem; font-weight: 500; }

/* ── Hero image ── */
.hero-image { width: 100%; max-width: 520px; border-radius: 20px; box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,200,150,0.08); position: relative; z-index: 1; }

/* ── SECTION shared ── */
section { padding: 7rem 0; }
.section-eyebrow { font-size: 0.72rem; font-weight: 500; color: #00c896; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; font-family: 'DM Sans', sans-serif; display: block; }
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; color: #fff; margin-bottom: 1.25rem; }
.section-sub { font-size: 1.05rem; color: #a8a49c; max-width: 520px; line-height: 1.7; }
.section-sub.center { max-width: 560px; margin: 0 auto; }

/* ── INTAKE SECTION ── */
.intake { background: #0a0f1a; position: relative; }
.intake-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; margin-top: 4rem; }
.intake-steps { display: flex; flex-direction: column; gap: 1.5rem; }
.intake-step { display: flex; gap: 1.25rem; align-items: flex-start; opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.intake-step.in-view { opacity: 1; transform: none; }
.intake-step:nth-child(2) { transition-delay: 0.1s; }
.intake-step:nth-child(3) { transition-delay: 0.2s; }
.intake-step:nth-child(4) { transition-delay: 0.3s; }
.intake-step:nth-child(5) { transition-delay: 0.4s; }
.intake-step-num { font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 800; color: #00c896; line-height: 1; min-width: 48px; padding-top: 0.1rem; }
.intake-step-content h4 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 0.4rem; }
.intake-step-content p { font-size: 0.88rem; color: #7a756e; line-height: 1.6; }
.intake-visual { position: relative; }

/* Intake diagram - CSS only */
.intake-diagram { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 20px; padding: 2rem; position: relative; opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.intake-diagram.in-view { opacity: 1; transform: none; }
.intake-diagram-title { font-family: 'Syne', sans-serif; font-size: 0.75rem; font-weight: 600; color: #5a5550; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.5rem; }
.intake-questions { display: flex; flex-direction: column; gap: 0.75rem; }
.intake-q { background: rgba(0,200,150,0.06); border: 1px solid rgba(0,200,150,0.15); border-radius: 10px; padding: 0.85rem 1.1rem; display: flex; align-items: center; gap: 0.75rem; font-size: 0.85rem; color: #c8c4bc; transition: all 0.2s; }
.intake-q-icon { width: 24px; height: 24px; min-width: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.intake-q-icon.q { background: rgba(0,200,150,0.15); color: #00c896; font-size: 0.7rem; font-weight: 700; }
.intake-q-icon.check { background: rgba(0,200,150,0.2); color: #00c896; }
.intake-q.highlight { border-color: rgba(0,200,150,0.4); background: rgba(0,200,150,0.1); animation: pulse-border 1.5s ease-in-out infinite; }
@keyframes pulse-border {
  0%, 100% { border-color: rgba(0,200,150,0.4); }
  50% { border-color: rgba(0,200,150,0.8); }
}
.intake-badge { position: absolute; top: -12px; right: 20px; background: #e84040; color: #fff; font-size: 0.65rem; font-weight: 700; padding: 0.3rem 0.6rem; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.06em; }

/* ── DISPATCH SECTION ── */
.dispatch { background: linear-gradient(180deg, #0a0f1a 0%, #0d1525 100%); position: relative; }
.dispatch::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(0,200,150,0.3), transparent); }
.dispatch-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 4rem; }
.dispatch-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 16px; padding: 2rem; position: relative; overflow: hidden; transition: all 0.3s; }
.dispatch-card:hover { border-color: rgba(0,200,150,0.2); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,200,150,0.1); }
.dispatch-card-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(0,200,150,0.1); border: 1px solid rgba(0,200,150,0.2); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.dispatch-card h4 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 0.6rem; }
.dispatch-card p { font-size: 0.85rem; color: #7a756e; line-height: 1.6; }
.dispatch-card-tag { position: absolute; top: 1.25rem; right: 1.25rem; font-size: 0.65rem; font-weight: 600; padding: 0.2rem 0.55rem; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.06em; }
.tag-emergency { background: rgba(232,64,64,0.15); color: #e84040; border: 1px solid rgba(232,64,64,0.25); }
.tag-routine { background: rgba(0,200,150,0.1); color: #00c896; border: 1px solid rgba(0,200,150,0.2); }
.tag-revenue { background: rgba(245,197,24,0.12); color: #f5c518; border: 1px solid rgba(245,197,24,0.2); }

/* ── PROOF SECTION ── */
.proof { background: #0a0f1a; }
.proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 4rem; }
.proof-main-stat { background: linear-gradient(135deg, rgba(0,200,150,0.08) 0%, rgba(0,200,150,0.02) 100%); border: 1px solid rgba(0,200,150,0.2); border-radius: 20px; padding: 3rem; grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.proof-stat-headline { font-family: 'Syne', sans-serif; font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 800; color: #00c896; line-height: 1; margin-bottom: 1rem; }
.proof-stat-headline span { color: rgba(255,255,255,0.15); }
.proof-stat-context { font-size: 1rem; color: #a8a49c; line-height: 1.7; }
.proof-stat-context strong { color: #fff; }
.proof-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 16px; padding: 2rem; }
.proof-card-value { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 0.5rem; }
.proof-card-label { font-size: 0.85rem; color: #7a756e; line-height: 1.5; }

/* ── CLOSING ── */
.closing { background: #0d1525; position: relative; overflow: hidden; text-align: center; }
.closing::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 800px; height: 400px; background: radial-gradient(ellipse, rgba(0,200,150,0.06) 0%, transparent 70%); pointer-events: none; }
.closing-inner { position: relative; z-index: 2; }
.closing h2 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); font-weight: 800; color: #fff; margin-bottom: 1.25rem; }
.closing h2 em { font-style: normal; color: #00c896; }
.closing p { font-size: 1.05rem; color: #7a756e; max-width: 500px; margin: 0 auto 2.5rem; line-height: 1.7; }

/* CTA block */
.closing-cta { display: inline-flex; align-items: center; gap: 0.6rem; font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 700; color: #00c896; border: 1px solid rgba(0,200,150,0.3); background: rgba(0,200,150,0.07); padding: 0.85rem 1.75rem; border-radius: 100px; }
.closing-sub { margin-top: 3rem; font-size: 0.78rem; color: #5a5550; }

/* ── FOOTER ── */
footer { padding: 2.5rem 0; border-top: 1px solid rgba(255,255,255,0.05); background: #0a0f1a; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; }
.footer-brand { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.1rem; color: #fff; }
.footer-brand span { color: #00c896; }
.footer-copy { font-size: 0.78rem; color: #5a5550; }

/* ── Scroll reveal animations ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in-view { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Audio demo player ── */
.audio-demo-section { padding: 5rem 0; background: #0a0f1a; }
.audio-demo-wrap { background: rgba(255,255,255,0.04); border: 1px solid rgba(0,200,150,0.2); border-radius: 20px; padding: 2rem 2.5rem; margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.audio-demo-label { font-family: 'Syne', sans-serif; font-size: 0.75rem; font-weight: 600; color: #00c896; text-transform: uppercase; letter-spacing: 0.1em; }
.audio-demo-player { display: flex; align-items: center; gap: 1rem; }
.audio-demo-btn { width: 48px; height: 48px; min-width: 48px; border-radius: 50%; background: rgba(0,200,150,0.15); border: 1px solid rgba(0,200,150,0.3); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s, transform 0.15s; }
.audio-demo-btn:hover { background: rgba(0,200,150,0.25); transform: scale(1.05); }
.audio-demo-btn svg { fill: #00c896; }
.audio-progress { flex: 1; height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; cursor: pointer; position: relative; }
.audio-progress-fill { height: 100%; background: #00c896; border-radius: 2px; width: 0%; transition: width 0.1s linear; }
.audio-time { font-size: 0.78rem; color: #5a5550; font-family: 'DM Sans', sans-serif; min-width: 80px; text-align: right; }
.audio-captions { font-size: 0.85rem; color: #a8a49c; line-height: 1.6; display: flex; flex-direction: column; gap: 0.4rem; }
.audio-captions span { color: #00c896; font-weight: 500; }
.audio-caption-line { opacity: 0.5; transition: opacity 0.3s; }
.audio-caption-line.active { opacity: 1; }

/* ── Pricing toggle ── */
.pricing-card-header { display: flex; align-items: center; justify-content: space-between; }
.pricing-toggle { background: none; border: none; cursor: pointer; padding: 0.25rem; display: flex; align-items: center; gap: 0.4rem; color: #a8a49c; font-size: 0.8rem; font-family: 'DM Sans', sans-serif; transition: color 0.2s; }
.pricing-toggle:hover { color: #00c896; }
.pricing-toggle svg { transition: transform 0.3s ease; }
.pricing-card.collapsed .pricing-toggle svg { transform: rotate(180deg); }
.pricing-features { transition: max-height 0.4s ease, opacity 0.3s ease; max-height: 500px; overflow: hidden; }
.pricing-card.collapsed .pricing-features { max-height: 0; opacity: 0; }
.pricing-card.collapsed .btn-signup { display: none; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 5rem 2rem 4rem; }
  .intake-grid { grid-template-columns: 1fr; }
  .dispatch-grid { grid-template-columns: 1fr; }
  .proof-main-stat { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
  .audio-demo-wrap { padding: 1.5rem; }
}

@media (max-width: 600px) {
  .hero-stats { flex-direction: column; gap: 1.5rem; }
}

/* ── Buttons ── */
.btn-signup {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #00c896;
  color: #0a0f1a;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.75rem 1.6rem;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 0 20px rgba(0, 200, 150, 0.25);
}
.btn-signup:hover {
  background: #00b586;
  transform: translateY(-1px);
  box-shadow: 0 4px 24px rgba(0, 200, 150, 0.35);
}
.btn-signup:active { transform: translateY(0); }
.btn-signup--secondary {
  background: transparent;
  color: #00c896;
  border: 1px solid rgba(0, 200, 150, 0.4);
  box-shadow: none;
}
.btn-signup--secondary:hover {
  background: rgba(0, 200, 150, 0.08);
  border-color: #00c896;
}

/* ── Nav sign-up link ── */
.nav-signup {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #00c896;
  text-decoration: none;
  padding: 0.45rem 1.1rem;
  border: 1px solid rgba(0, 200, 150, 0.35);
  border-radius: 100px;
  transition: background 0.2s, border-color 0.2s;
}
.nav-signup:hover { background: rgba(0, 200, 150, 0.08); border-color: #00c896; }

/* ── Pricing section ── */
.pricing-section { padding: 7rem 0; background: #0a0f1a; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.pricing-card:hover { border-color: rgba(0, 200, 150, 0.35); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,200,150,0.08); }
.pricing-card--featured { border-color: rgba(0, 200, 150, 0.4); background: linear-gradient(135deg, rgba(0, 200, 150, 0.07) 0%, rgba(0, 200, 150, 0.02) 100%); }
.pricing-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #00c896;
  color: #0a0f1a;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.85rem;
  border-radius: 100px;
}
.pricing-header { display: flex; flex-direction: column; gap: 0.5rem; }
.pricing-plan-name {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #a8a49c;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pricing-price { display: flex; align-items: baseline; gap: 0.35rem; }
.pricing-amount {
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}
.pricing-period { font-size: 0.85rem; color: #6b6560; font-weight: 400; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; flex: 1; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: #a8a49c;
}
.pricing-features li::before {
  content: '';
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  background: rgba(0, 200, 150, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300c896' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}
.pricing-card .btn-signup { justify-content: center; margin-top: 0.5rem; }

/* ── Closing CTAs ── */
.closing-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

/* ── Form elements ── */
.form-page { min-height: 100vh; display: flex; flex-direction: column; }
.form-page-main { flex: 1; display: flex; align-items: center; justify-content: center; padding: 6rem 2rem 4rem; }
.form-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 3rem;
  width: 100%;
  max-width: 600px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}
.form-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2rem;
  line-height: 1.1;
}
.form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.form-group:last-of-type { margin-bottom: 0; }
.form-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: #a8a49c;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.form-input,
.form-textarea,
.form-select {
  background: #0a0f1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: #e8e4dc;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  width: 100%;
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus { border-color: rgba(0, 200, 150, 0.6); box-shadow: 0 0 0 3px rgba(0, 200, 150, 0.1); }
.form-input::placeholder,
.form-textarea::placeholder { color: #5a5550; }
.form-textarea { resize: vertical; min-height: 80px; line-height: 1.5; }
.form-select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6560' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-section { margin-bottom: 2rem; }
.form-section-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #00c896;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.form-radio-group { display: flex; gap: 1.5rem; }
.form-radio { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; }
.form-radio input[type="radio"] { accent-color: #00c896; width: 16px; height: 16px; }
.form-radio span { font-size: 0.9rem; color: #e8e4dc; }
.form-error { background: rgba(232, 64, 64, 0.12); border: 1px solid rgba(232, 64, 64, 0.3); color: #e84040; border-radius: 8px; padding: 0.75rem 1rem; font-size: 0.85rem; margin-bottom: 1.25rem; }
.form-submit { margin-top: 2rem; }
.form-submit .btn-signup { width: 100%; justify-content: center; font-size: 1rem; padding: 0.9rem 1.6rem; }

/* ── Success page ── */
.success-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 6rem 2rem; }
.success-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 200, 150, 0.25);
  border-radius: 24px;
  padding: 3.5rem;
  max-width: 560px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 60px rgba(0, 200, 150, 0.08);
}
.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 200, 150, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.success-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}
.success-sub { font-size: 0.95rem; color: #a8a49c; line-height: 1.7; margin-bottom: 2.5rem; }
.success-steps { text-align: left; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2.5rem; }
.success-step { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9rem; color: #a8a49c; }
.success-step-num {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: rgba(0, 200, 150, 0.15);
  color: #00c896;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.05rem;
}

/* ── Settings page ── */
.settings-page { min-height: 100vh; display: flex; flex-direction: column; }
.settings-page-main { flex: 1; display: flex; align-items: center; justify-content: center; padding: 6rem 2rem 4rem; }
.settings-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 3rem;
  width: 100%;
  max-width: 560px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}
.settings-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}
.settings-sub { font-size: 0.88rem; color: #6b6560; margin-bottom: 2rem; }
.settings-url {
  background: rgba(0, 200, 150, 0.08);
  border: 1px solid rgba(0, 200, 150, 0.2);
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  font-size: 0.82rem;
  color: #00c896;
  font-family: monospace;
  margin-bottom: 2rem;
  word-break: break-all;
}
.settings-section-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #a8a49c;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.settings-actions { display: flex; gap: 1rem; margin-top: 2rem; }
.settings-actions .btn-signup { flex: 1; justify-content: center; }

/* ── Responsive ── */
@media (max-width: 700px) {
  .form-row { grid-template-columns: 1fr; }
  .form-card, .success-card, .settings-card { padding: 2rem 1.5rem; }
}