/* Domitoonami one-pager — brand rebuild (cyan / magenta / gold on dark) */

:root {
  --bg: #07090D;
  --surface: #12161D;
  --surface-2: #1A2029;
  --border: #2A3340;
  --text: #F4F6F8;
  --muted: #A8B0BC;
  --gold: #F5A524;
  --gold-hover: #E09418;
  --gold-glow: rgba(245, 165, 36, 0.35);
  --gold-soft: rgba(245, 165, 36, 0.12);
  --cyan: #00E5FF;
  --cyan-soft: rgba(0, 229, 255, 0.12);
  --cyan-glow: rgba(0, 229, 255, 0.28);
  --magenta: #FF2D95;
  --magenta-soft: rgba(255, 45, 149, 0.12);
  --mint: #3DDC97;
  --mint-soft: rgba(61, 220, 151, 0.14);
  --cta-label: #07090D;
  --radius: 14px;
  --max: 1040px;
  --measure: 65ch;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans", sans-serif;
  --sticky-bar-h: 4.5rem;
  --header-h: 3.75rem;
  --section-y: 3.25rem;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(0, 229, 255, 0.07), transparent 55%),
    radial-gradient(ellipse 60% 40% at 95% 5%, rgba(255, 45, 149, 0.06), transparent 50%),
    var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(var(--sticky-bar-h) + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 720px) {
  body {
    padding-bottom: 0;
  }
}

a {
  color: var(--cyan);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 100;
  padding: 0.65rem 1.1rem;
  background: var(--gold);
  color: var(--cta-label);
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
}

.skip-link:focus {
  top: 0.75rem;
  outline: 2px solid var(--text);
  outline-offset: 2px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  min-height: var(--header-h);
  background: rgba(7, 9, 13, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--gold);
  text-decoration: none;
}

.logo:hover {
  color: var(--cyan);
  text-decoration: none;
}

.nav {
  display: none;
  gap: 1.1rem;
  margin-left: auto;
  margin-right: 0.5rem;
}

.nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

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

.site-header .btn-sm {
  margin-left: auto;
  min-height: 44px;
  min-width: 44px;
}

@media (min-width: 720px) {
  .nav {
    display: flex;
  }
  .site-header .btn-sm {
    margin-left: 0;
  }
}

/* Buttons — gold primary CTAs */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 1.35rem;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, box-shadow 0.15s, border-color 0.15s, color 0.15s;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--cta-label);
  box-shadow: 0 0 28px var(--gold-glow);
}

.btn-primary:hover {
  background: var(--gold-hover);
  box-shadow: 0 0 36px var(--gold-glow), 0 0 18px var(--cyan-glow);
  color: var(--cta-label);
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border-color: var(--border);
  font-weight: 500;
  box-shadow: none;
}

.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--text);
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

/* Sections */
.section {
  padding: var(--section-y) 1.25rem;
  max-width: var(--max);
  margin: 0 auto;
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
}

.section-tight-bottom {
  padding-bottom: calc(var(--section-y) * 0.55);
}

.section-tight-top {
  padding-top: calc(var(--section-y) * 0.55);
}

.section h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.55rem, 4vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.section-lead {
  color: var(--muted);
  margin: 0 0 1.5rem;
  max-width: var(--measure);
  font-size: 1.05rem;
}

.section-label {
  display: inline-block;
  margin: 0 0 0.7rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 229, 255, 0.28);
  background: var(--cyan-soft);
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  padding: 2.75rem 1.25rem 2.5rem;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  align-items: start;
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    padding: 3.25rem 1.25rem 2.75rem;
    align-items: center;
  }
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.hero h1 {
  margin: 0 0 0.55rem;
  font-size: clamp(2rem, 6.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--text);
  max-width: 14ch;
  text-shadow: 0 0 40px rgba(0, 229, 255, 0.18);
}

@media (min-width: 900px) {
  .hero h1 {
    max-width: 16ch;
  }
}

.problem-line {
  margin: 0 0 0.9rem;
  color: var(--cyan);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.subhead {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: var(--measure);
  line-height: 1.55;
}

.subhead strong {
  color: var(--text);
  font-weight: 700;
}

.subhead em {
  font-style: italic;
  color: var(--text);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.trust-strip {
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.35rem;
  align-items: center;
}

.trust-strip li {
  color: var(--muted);
  font-size: 0.88rem;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
}

.trust-strip li strong {
  color: var(--text);
  font-weight: 700;
}

/* Brand images */
.hero-visual {
  min-height: 0;
}

.brand-figure,
.brand-strip {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0, 229, 255, 0.22);
  box-shadow:
    0 0 0 1px rgba(255, 45, 149, 0.08),
    0 12px 40px rgba(0, 0, 0, 0.45);
  background: var(--surface);
}

.brand-figure img,
.brand-strip img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.brand-strip {
  margin: 0 0 1.5rem;
}

.brand-strip-book {
  margin-bottom: 1.25rem;
  max-width: 42rem;
}

/* Cards */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.2rem;
}

/* Service grid */
.service-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.service h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}

.service p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: var(--measure);
}

.service {
  transition: border-color 0.15s, box-shadow 0.15s;
}

.service:hover {
  border-color: rgba(0, 229, 255, 0.35);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.06);
}

/* Audio band */
.audio-band {
  margin-top: 2rem;
  display: grid;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 45, 149, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 45, 149, 0.06), rgba(0, 229, 255, 0.04)),
    var(--surface);
}

@media (min-width: 800px) {
  .audio-band {
    grid-template-columns: 0.9fr 1.1fr;
    padding: 1.5rem;
  }
}

.audio-band-copy h3 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.audio-band-copy p:last-child {
  margin: 0;
  color: var(--muted);
  max-width: var(--measure);
}

.brand-figure-audio {
  margin: 0;
}

/* How it works */
.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  color: var(--muted);
}

.steps li::before {
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background: var(--cyan-soft);
  border: 1px solid rgba(0, 229, 255, 0.35);
  color: var(--cyan);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.steps strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.15rem;
  font-weight: 600;
}

.steps span {
  display: block;
  font-size: 0.95rem;
}

.check-line {
  display: flex !important;
  align-items: flex-start;
  gap: 0.4rem;
}

.check {
  color: var(--mint);
  font-weight: 700;
  flex-shrink: 0;
}

/* Proof */
.proof-section {
  border-top: 1px solid var(--border);
}

.proof-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

@media (min-width: 800px) {
  .proof-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.case-tag {
  display: inline-block;
  margin: 0 0 0.65rem;
  padding: 0.15rem 0.55rem;
  border-radius: 6px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.case-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  max-width: var(--measure);
}

.proof-stats {
  margin-top: 1.1rem;
  border-color: rgba(0, 229, 255, 0.2);
}

.proof-stats p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  max-width: var(--measure);
}

.proof-stats strong {
  color: var(--text);
}

.footnote {
  margin: 1.15rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
  max-width: var(--measure);
  line-height: 1.55;
}

/* Rate */
.rate-section {
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(245, 165, 36, 0.05), transparent 55%);
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.rate-section > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.rate-card {
  max-width: 36rem;
  border-color: rgba(245, 165, 36, 0.28);
}

.rate-giant {
  margin: 0 0 0.75rem;
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.rate-num {
  font-size: clamp(3.2rem, 10vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.rate-unit {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--muted);
}

.rate-why {
  margin: 0 0 0.9rem;
  padding: 0.75rem 0.9rem;
  background: var(--gold-soft);
  border: 1px solid rgba(245, 165, 36, 0.22);
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: var(--measure);
}

.rate-copy {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.02rem;
  max-width: var(--measure);
}

.hour-buys {
  margin: 0 0 1rem;
  padding: 1rem 1.05rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.hour-buys-title {
  margin: 0 0 0.6rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}

.hour-buys-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.hour-buys-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.4;
}

.rate-bullets {
  list-style: none;
  margin: 0 0 0.75rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
}

.rate-bullets li {
  color: var(--muted);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* Book section */
.template-section {
  border-top: none;
}

.template-header {
  padding: 1.1rem 1.2rem 0.95rem;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}

.template-badge {
  display: inline-block;
  margin: 0 0 0.6rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: var(--gold-soft);
  border: 1px solid rgba(245, 165, 36, 0.3);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.template-subject {
  margin: 0;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.4;
}

.template-key {
  color: var(--muted);
  font-weight: 600;
  margin-right: 0.35rem;
}

.template-body {
  list-style: none;
  margin: 0;
  padding: 1rem 1.2rem 0.3rem;
  display: grid;
  gap: 0.5rem;
}

.template-body li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 0;
  padding: 0.6rem 0.7rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.prompt-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 700;
}

.prompt-text {
  padding-top: 0.15rem;
  line-height: 1.4;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.6rem;
}

.faq-list details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.35rem 1.15rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  color: var(--text);
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  color: var(--muted);
  font-weight: 700;
  flex-shrink: 0;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-weight: 400;
  max-width: var(--measure);
}

.faq-list p a {
  color: var(--cyan);
  font-weight: 500;
}

/* Bottom CTA */
.bottom-cta {
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(
    180deg,
    transparent,
    rgba(0, 229, 255, 0.04),
    rgba(245, 165, 36, 0.05),
    transparent
  );
}

.bottom-cta h2 {
  margin-bottom: 0.5rem;
}

.bottom-cta > p {
  color: var(--muted);
  margin: 0 0 1.15rem;
}

.bottom-cta .hero-ctas {
  justify-content: center;
}

.bottom-cta .section-lead {
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.site-footer {
  padding: 1.5rem 1.25rem 1.75rem;
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer p {
  margin: 0.25rem 0;
}

.site-footer a {
  color: var(--cyan);
}

/* Sticky mobile bottom bar */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
  background: rgba(7, 9, 13, 0.94);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.35);
}

.sticky-bar-btn {
  flex: 1 1 auto;
  width: auto;
  min-height: 48px;
  font-size: 1.02rem;
  text-decoration: none;
}

.sticky-bar-secondary {
  flex: 0 0 auto;
  padding: 0.7rem 0.9rem;
  font-size: 0.88rem;
  min-height: 48px;
}

.sticky-bar-mail {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 0.35rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.sticky-bar-mail:hover {
  color: var(--gold);
  text-decoration: underline;
}

@media (min-width: 720px) {
  .sticky-bar {
    display: none;
  }
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.btn-primary:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 3px;
}

@media (max-width: 719px) {
  :root {
    --section-y: 2.75rem;
  }

  .hero {
    padding-top: 2.25rem;
    padding-bottom: 2rem;
  }

  body {
    font-size: 16px;
  }

  .section {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }
}

@media (min-width: 720px) {
  :root {
    --section-y: 3.5rem;
  }
}

.btn-text {
  color: var(--cyan);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.5rem 0.25rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.btn-text:hover {
  text-decoration: underline;
  color: var(--gold);
}

/* Discord */
.btn-discord {
  border-color: rgba(88, 101, 242, 0.35);
  color: #c5c9f5;
}

.btn-discord:hover {
  border-color: rgba(88, 101, 242, 0.55);
  color: var(--text);
  background: rgba(88, 101, 242, 0.08);
}

.discord-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 42rem;
  margin: 0 0 1.25rem;
  padding: 1.15rem 1.2rem;
  border-color: rgba(88, 101, 242, 0.22);
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.06), var(--surface));
}

.discord-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

.discord-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: var(--measure);
}

.discord-card-copy {
  flex: 1 1 16rem;
}

/* Intake form */
.booking-form {
  max-width: 42rem;
  margin: 0 0 1.25rem;
  padding: 1.25rem 1.2rem 1.35rem;
  border-color: rgba(245, 165, 36, 0.28);
  box-shadow: 0 0 32px rgba(245, 165, 36, 0.06);
}

.form-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-field-full {
    grid-column: 1 / -1;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.form-field .required {
  color: var(--gold);
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  min-height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.98rem;
  line-height: 1.4;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-field textarea {
  min-height: 6.5rem;
  resize: vertical;
}

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23A8B0BC' d='M1.4 0.6L6 5.2 10.6 0.6 12 2 6 8 0 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.25rem;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #6b7380;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px var(--cyan-soft);
}

.form-actions {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

.form-actions .btn {
  width: 100%;
}

@media (min-width: 480px) {
  .form-actions .btn {
    width: auto;
  }
}

.form-hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.form-fallback {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-fallback a {
  color: var(--cyan);
  font-weight: 500;
}

.prompts-details {
  max-width: 42rem;
  padding: 0;
  overflow: hidden;
  border-color: var(--border);
}

.prompts-details > summary {
  cursor: pointer;
  list-style: none;
  padding: 0.95rem 1.2rem;
  font-weight: 600;
  color: var(--text);
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.prompts-details > summary::-webkit-details-marker {
  display: none;
}

.prompts-details > summary::after {
  content: "+";
  color: var(--muted);
  font-weight: 700;
  flex-shrink: 0;
}

.prompts-details[open] > summary::after {
  content: "–";
}

.prompts-details[open] > summary {
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}

.prompts-header {
  border-bottom: 1px solid var(--border);
}

.prompts-ctas {
  padding: 1.05rem 1.2rem 1.25rem;
}

.prompts-details .template-body {
  padding-bottom: 0.5rem;
}
