/* Psyrise ad landing pages — shared styles */
:root {
  --bg: #0a0908;
  --bg-soft: #141210;
  --card: #1b1815;
  --line: rgba(255, 255, 255, 0.09);
  --text: #faf7f2;
  --muted: #b3aa9e;
  --orange: #f97316;
  --orange-deep: #ea580c;
  --sunrise: #f97316;
  --sunrise-soft: #fdba74;
  --grad: linear-gradient(100deg, #fbbf24 0%, #f97316 55%, #ea580c 100%);
  --radius: 16px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --max: 1100px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Sora", "Inter", system-ui, sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

img { max-width: 100%; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---- Header (minimal on purpose: no nav leakage on an ad landing page) ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 9, 8, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.logo .rise {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  border-radius: 999px;
  cursor: pointer;
  border: 0;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--grad);
  color: #1a0e02;
  padding: 15px 32px;
  font-size: 1.05rem;
  box-shadow: 0 8px 30px rgba(249, 115, 22, 0.35);
}
.btn-primary:hover { box-shadow: 0 12px 36px rgba(251, 146, 60, 0.45); }
.btn-small { padding: 10px 22px; font-size: 0.92rem; }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 14px 30px;
  font-size: 1rem;
}
.btn-ghost:hover { border-color: var(--sunrise-soft); color: var(--sunrise-soft); }
.btn-block { display: block; width: 100%; }

/* ---- Hero ---- */
.hero {
  position: relative;
  padding: 88px 0 72px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto;
  height: 130%;
  background:
    radial-gradient(600px 420px at 18% 10%, rgba(249, 115, 22, 0.22), transparent 70%),
    radial-gradient(560px 400px at 85% 25%, rgba(251, 191, 36, 0.14), transparent 70%),
    radial-gradient(500px 380px at 55% 90%, rgba(234, 88, 12, 0.10), transparent 70%);
  pointer-events: none;
}
.hero .wrap { position: relative; }
.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sunrise-soft);
  border: 1px solid rgba(251, 146, 60, 0.35);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  max-width: 18ch;
  margin-bottom: 20px;
}
.hero h1 .accent {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--muted);
  max-width: 56ch;
  margin-bottom: 34px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 18px; }
.cta-note { font-size: 0.88rem; color: var(--muted); }

/* ---- Stats strip ---- */
.stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}
.stats .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 34px;
  padding-bottom: 34px;
  text-align: center;
}
.stat b {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat span { color: var(--muted); font-size: 0.95rem; }

/* ---- Sections ---- */
section { padding: 76px 0; }
.section-head { max-width: 62ch; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 1.08rem; }

/* ---- Pain / problem list ---- */
.pain { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; }
.pain-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  color: var(--muted);
}
.pain-item b { color: var(--text); display: block; margin-bottom: 6px; font-family: "Sora", sans-serif; }

/* ---- Feature cards ---- */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.feature {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.feature .icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(249, 115, 22, 0.16);
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.feature h3 { font-size: 1.12rem; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 0.97rem; }

/* ---- Steps ---- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; counter-reset: step; }
.step {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px 26px;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: "Sora", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--sunrise-soft);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 12px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.96rem; }

/* ---- FAQ ---- */
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--sunrise-soft); font-size: 1.3rem; flex-shrink: 0; }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 24px 20px; color: var(--muted); }

/* ---- Lead form ---- */
.cta-section {
  background:
    radial-gradient(560px 380px at 80% 0%, rgba(249, 115, 22, 0.16), transparent 70%),
    radial-gradient(480px 340px at 10% 100%, rgba(251, 191, 36, 0.10), transparent 70%),
    var(--bg-soft);
  border-top: 1px solid var(--line);
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.cta-copy h2 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); margin-bottom: 16px; }
.cta-copy p { color: var(--muted); margin-bottom: 22px; }
.cta-copy ul { list-style: none; }
.cta-copy li { padding-left: 30px; position: relative; margin-bottom: 12px; color: var(--muted); }
.cta-copy li::before { content: "✓"; position: absolute; left: 0; color: var(--sunrise-soft); font-weight: 700; }

.lead-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.lead-form h3 { font-size: 1.25rem; margin-bottom: 4px; }
.lead-form .form-sub { color: var(--muted); font-size: 0.92rem; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.86rem; font-weight: 600; margin-bottom: 6px; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  padding: 13px 14px;
  font-size: 1rem;
  font-family: inherit;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.25);
}
.form-note { font-size: 0.8rem; color: var(--muted); text-align: center; margin-top: 14px; }
.form-error { display: none; color: #fda4af; font-size: 0.9rem; margin-top: 12px; text-align: center; }

/* ---- Footer ---- */
.site-footer { border-top: 1px solid var(--line); padding: 36px 0 44px; }
.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 0.88rem;
}
.site-footer a { color: var(--muted); }

/* ---- Thank-you page ---- */
.thanks-hero { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: 80px 0; }
.thanks-hero .check {
  width: 72px; height: 72px;
  margin: 0 auto 26px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 2rem;
  background: var(--grad);
  color: #1a0e02;
}
.thanks-hero h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 16px; }
.thanks-hero p { color: var(--muted); max-width: 52ch; margin: 0 auto 30px; }

/* ---- Responsive ---- */
@media (max-width: 860px) {
  .cta-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats .wrap { grid-template-columns: 1fr; gap: 18px; }
  .hero { padding: 60px 0 52px; }
  section { padding: 56px 0; }
}
