/* She Answers — one-pager */
:root {
  --bg: #0b1220;
  --bg-elev: #121a2b;
  --bg-alt: #0e1626;
  --card: #151f33;
  --text: #eef2ff;
  --muted: #9aa6c2;
  --faint: #6b7896;
  --accent: #5eead4;
  --accent-2: #38bdf8;
  --call: #34d399;
  --call-ink: #052e1a;
  --border: rgba(148, 163, 184, 0.18);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --radius: 16px;
  --font: "DM Sans", system-ui, sans-serif;
  --display: "Instrument Serif", Georgia, serif;
  --max: 1100px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }
code {
  font-size: 0.9em;
  background: rgba(94, 234, 212, 0.12);
  color: var(--accent);
  padding: 0.1em 0.35em;
  border-radius: 6px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--call);
  color: var(--call-ink);
  padding: 0.5rem 1rem;
  z-index: 100;
}
.skip:focus { left: 0; }

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}
.wrap.narrow { width: min(100% - 2rem, 720px); }

/* Top bar */
.top {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(11, 18, 32, 0.85);
  border-bottom: 1px solid var(--border);
}
.top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}
.logo {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}
.logo span { color: var(--accent); }
.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.nav a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
}
.nav a:hover { color: var(--text); }
.nav .btn { color: var(--call-ink); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-sm { padding: 0.45rem 0.95rem; font-size: 0.875rem; }
.btn-lg { padding: 0.95rem 1.4rem; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-call {
  background: linear-gradient(135deg, #34d399, #2dd4bf);
  color: var(--call-ink) !important;
  box-shadow: 0 8px 28px rgba(52, 211, 153, 0.35);
}
.btn-call:hover { box-shadow: 0 12px 36px rgba(52, 211, 153, 0.45); }
.btn-ghost {
  background: transparent;
  color: var(--text) !important;
  border-color: var(--border);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.04); }

/* Hero */
.hero {
  padding: 4.5rem 0 3.5rem;
  background:
    radial-gradient(ellipse 80% 60% at 70% 0%, rgba(56, 189, 248, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(94, 234, 212, 0.1), transparent 50%),
    var(--bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 0.75rem;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
}
.lede {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 36rem;
  margin: 0 0 1.75rem;
}
.lede strong { color: var(--text); }
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.fine {
  font-size: 0.85rem;
  color: var(--faint);
  margin: 0;
}
.phone-icon { font-size: 1.1em; }

.hero-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.hero-card .card-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-2);
  margin: 0 0 0.5rem;
  font-weight: 600;
}
.hero-card h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.75rem;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}
.hero-card p { color: var(--muted); margin: 0 0 1rem; }
.checks {
  list-style: none;
  padding: 0;
  margin: 0;
}
.checks li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.45rem;
  color: var(--text);
  font-size: 0.95rem;
}
.checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--call);
  font-weight: 700;
}
.pulse {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--call);
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.55); }
  70% { box-shadow: 0 0 0 12px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

/* Sections */
.section { padding: 4.5rem 0; }
.section.alt { background: var(--bg-alt); }
.section-head { margin-bottom: 2.5rem; max-width: 36rem; }
.section-head h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.5vw, 2.5rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}
.section-head p:not(.eyebrow) {
  color: var(--muted);
  margin: 0;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.price-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.price-card.featured {
  background: linear-gradient(160deg, #152033 0%, #0f1a2e 100%);
  border-color: rgba(94, 234, 212, 0.35);
  box-shadow: 0 0 0 1px rgba(94, 234, 212, 0.08), var(--shadow);
}
.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(94, 234, 212, 0.15);
  color: var(--accent);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  margin: 0 0 0.75rem;
}
.price-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
}
.price {
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0;
  line-height: 1;
}
.price .currency { font-size: 1.4rem; vertical-align: super; margin-right: 0.1rem; }
.price .period, .subprice .period {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
}
.subprice {
  margin: 0.5rem 0 1.25rem;
  color: var(--muted);
  font-size: 1.1rem;
}
.subprice strong { color: var(--text); font-size: 1.35rem; }
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.price-card li {
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.95rem;
}
.price-card li:last-child { border-bottom: 0; }
.price-card li strong { color: var(--text); }

/* Steps */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  counter-reset: none;
}
.steps li {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.15);
  color: var(--accent-2);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
}
.steps h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}
.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* FAQ */
.faq details {
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.35rem;
  font-weight: 400;
  flex-shrink: 0;
}
.faq details[open] summary::after { content: "−"; }
.faq details p {
  margin: 0.75rem 0 0.25rem;
  color: var(--muted);
}

/* Final CTA */
.final-cta {
  padding: 4rem 0;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(52, 211, 153, 0.12), transparent 60%),
    var(--bg);
  border-top: 1px solid var(--border);
}
.final-cta h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.5vw, 2.5rem);
  margin: 0 0 0.5rem;
}
.final-cta p {
  color: var(--muted);
  margin: 0 0 1.5rem;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
}
.footer-inner { text-align: center; }
.footer p { margin: 0.25rem 0; }
.muted { color: var(--muted); }
.small { font-size: 0.85rem; }

/* Responsive */
@media (max-width: 860px) {
  .hero-grid,
  .pricing-grid,
  .steps { grid-template-columns: 1fr; }
  .nav a:not(.btn) { display: none; }
  .hero { padding-top: 3rem; }
}
