/* QuickDM — LinkPlease-style creator growth landing */
:root {
  --bg: #ffffff;
  --bg-soft: #f6f7ff;
  --bg-dark: #0a0a0f;
  --ink: #0a0a0f;
  --ink-muted: #5b5b6b;
  --ink-faint: #8b8b9a;
  --line: #e8e8f0;
  --blue: #1b1aff;
  --blue-hover: #1212d4;
  --blue-soft: #eef0ff;
  --green: #12b76a;
  --radius: 16px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --shadow: 0 20px 50px rgba(10, 10, 15, 0.1);
  --shadow-sm: 0 6px 20px rgba(10, 10, 15, 0.06);
  --font: "Satoshi", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --max: 1140px;
  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .marquee-track {
    animation: none !important;
  }
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font: inherit;
  border: none;
  cursor: pointer;
  background: none;
}

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

/* —— Nav —— */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  border-bottom-color: var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-muted);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-toggle {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--ink);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -5px;
}

.nav-toggle span::after {
  top: 5px;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 auto 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 1rem 1.25rem 1.25rem;
  z-index: 49;
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: var(--shadow-sm);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 0.75rem 0.5rem;
  font-weight: 600;
  color: var(--ink-muted);
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
  .mobile-menu {
    display: none !important;
  }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  border-radius: var(--radius-pill);
  padding: 0.85rem 1.35rem;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 28px rgba(27, 26, 255, 0.28);
}

.btn-primary:hover {
  background: var(--blue-hover);
}

.btn-secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-secondary:hover {
  border-color: #cfcfd8;
}

.btn-dark {
  background: var(--bg-dark);
  color: #fff;
}

.btn-dark:hover {
  background: #1a1a24;
}

.btn-ghost {
  color: var(--ink-muted);
  padding-inline: 0.75rem;
}

.btn-lg {
  padding: 1rem 1.6rem;
  font-size: 1.02rem;
}

.btn-block {
  width: 100%;
}

.btn-soon,
button.btn-soon,
a.btn-soon {
  background: #c8c8d4;
  color: #4a4a58;
  box-shadow: none;
  cursor: not-allowed;
  pointer-events: none;
  opacity: 1;
}

.btn-soon:hover,
button.btn-soon:hover {
  background: #c8c8d4;
  color: #4a4a58;
}

.btn-dark.btn-soon {
  background: #c8c8d4;
  color: #4a4a58;
}

/* —— Trust checks —— */
.checks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.15rem;
  margin-top: 1.15rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-muted);
}

.checks span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.checks span::before {
  content: "✓";
  color: var(--green);
  font-weight: 800;
}

/* —— Hero —— */
.hero {
  padding: 2.75rem 0 3.25rem;
  background:
    radial-gradient(ellipse 70% 55% at 85% 0%, rgba(27, 26, 255, 0.1), transparent 55%),
    #fff;
}

.hero-grid {
  display: grid;
  gap: 2.75rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero {
    padding: 3.25rem 0 4rem;
    min-height: calc(100dvh - var(--nav-h));
    display: flex;
    align-items: center;
  }
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }
}

.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 3.85rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin-bottom: 1rem;
  max-width: 12ch;
}

.hero h1 .accent {
  color: var(--blue);
  display: block;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--ink-muted);
  max-width: 38ch;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Phone mock */
.phone-wrap {
  position: relative;
  max-width: 380px;
  margin-inline: auto;
}

.phone {
  background: #111118;
  border-radius: 32px;
  padding: 0.75rem;
  box-shadow: var(--shadow);
  border: 1px solid #2a2a36;
}

.phone-inner {
  background: #fafafa;
  border-radius: 24px;
  overflow: hidden;
}

.phone-top {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.9rem 1rem;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6b6bff, #1b1aff);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 800;
}

.phone-top strong {
  display: block;
  font-size: 0.9rem;
}

.phone-top span {
  font-size: 0.75rem;
  color: var(--ink-faint);
}

.badge-live {
  margin-left: auto;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--green);
  background: #e8faf0;
  padding: 0.3rem 0.5rem;
  border-radius: 6px;
}

.comment {
  display: flex;
  gap: 0.6rem;
  padding: 0.95rem 1rem;
  background: #fff;
  border-bottom: 1px solid #f0f0f5;
}

.av-sm {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e4e4ee;
  color: var(--ink-muted);
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  font-weight: 800;
  flex-shrink: 0;
}

.comment p {
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.comment strong {
  color: var(--ink);
  margin-right: 0.25rem;
}

.trigger-bar {
  text-align: center;
  padding: 0.55rem;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
}

.dm-box {
  margin: 0.85rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem;
}

.dm-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.45rem;
}

.bubble {
  font-size: 0.82rem;
  line-height: 1.45;
  padding: 0.7rem 0.85rem;
  border-radius: 14px;
  margin-bottom: 0.5rem;
}

.bubble.in {
  background: #f1f1f6;
  border-bottom-left-radius: 4px;
}

.bubble.out {
  background: var(--blue);
  color: #fff;
  border-bottom-right-radius: 4px;
  margin-left: 1.25rem;
}

.dm-foot {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--ink-faint);
  font-weight: 600;
}

/* —— Social proof strip —— */
.trust-band {
  border-block: 1px solid var(--line);
  padding: 1.75rem 0 1.25rem;
  background: var(--bg-soft);
  overflow: hidden;
}

.trust-title {
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink-muted);
  margin-bottom: 1.25rem;
}

.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 0.85rem;
  width: max-content;
  animation: marquee 40s linear infinite;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.creator-chip {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.65rem 0.9rem;
  min-width: 200px;
}

.creator-chip .av {
  width: 40px;
  height: 40px;
  font-size: 0.72rem;
}

.creator-chip strong {
  display: block;
  font-size: 0.85rem;
}

.creator-chip span {
  font-size: 0.75rem;
  color: var(--ink-faint);
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 2rem 0 0.5rem;
}

@media (min-width: 768px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat {
  text-align: center;
  padding: 0.5rem;
}

.stat strong {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--blue);
}

.stat span {
  font-size: 0.875rem;
  color: var(--ink-muted);
  font-weight: 600;
}

/* —— Sections —— */
section {
  padding: 4.5rem 0;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 0.65rem;
  letter-spacing: 0.02em;
}

.section-head {
  max-width: 36rem;
  margin-bottom: 2.25rem;
}

.section-head.center {
  text-align: center;
  margin-inline: auto;
}

.section-head h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin-bottom: 0.75rem;
}

.section-head p {
  color: var(--ink-muted);
  font-size: 1.05rem;
  max-width: 46ch;
}

.section-head.center p {
  margin-inline: auto;
}

/* Feature pitch rows */
.pitch {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .pitch {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
  .pitch.reverse .pitch-copy {
    order: 2;
  }
}

.pitch-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.5rem;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

.pitch-card .mini-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.pitch-card .mini-row .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

.pitch-card .mini-row.ok .dot {
  background: var(--green);
}

/* Feature grid (like LinkPlease) */
.feat-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

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

@media (min-width: 960px) {
  .feat-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  height: 100%;
}

.feat:hover {
  border-color: #c9c9f0;
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.feat-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  font-size: 1.15rem;
  font-weight: 800;
}

.feat h3 {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.feat p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

.feat.soon {
  background: linear-gradient(160deg, #0a0a0f, #1a1a3a);
  color: #fff;
  border-color: #1a1a3a;
}

.feat.soon p {
  color: rgba(255, 255, 255, 0.7);
}

.feat.soon .feat-icon {
  background: rgba(27, 26, 255, 0.35);
  color: #c7c7ff;
}

.soon-tag {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--blue);
  color: #fff;
  padding: 0.3rem 0.55rem;
  border-radius: 6px;
}

/* How it works */
.how {
  background: var(--bg-dark);
  color: #fff;
}

.how .section-label {
  color: #9b9bff;
}

.how .section-head p {
  color: rgba(255, 255, 255, 0.65);
}

.steps {
  display: grid;
  gap: 1rem;
}

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

.step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.step-badge {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.step p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
}

/* Pricing */
.pricing {
  background: var(--bg-soft);
}

.billing-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.toggle {
  display: inline-flex;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 0.25rem;
}

.toggle button {
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink-muted);
}

.toggle button.active {
  background: var(--bg-dark);
  color: #fff;
}

.toggle .save {
  color: var(--green);
  margin-left: 0.25rem;
}

.pricing-grid {
  display: grid;
  gap: 1rem;
}

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

.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.price-card.featured {
  border-color: var(--blue);
  box-shadow: 0 16px 40px rgba(27, 26, 255, 0.15);
  transform: scale(1.02);
}

.price-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
}

.price-tier {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  margin: 0.35rem 0 0.5rem;
}

.price-amount .currency {
  font-size: 1.2rem;
  font-weight: 800;
}

.price-amount .num {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.price-amount .period {
  font-size: 0.875rem;
  color: var(--ink-faint);
  font-weight: 600;
}

.price-was {
  font-size: 0.82rem;
  color: var(--ink-faint);
  text-decoration: line-through;
}

.price-desc {
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin-bottom: 1.15rem;
  min-height: 2.6em;
}

.price-features {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
  flex: 1;
}

.price-features li {
  font-size: 0.9rem;
  color: var(--ink-muted);
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.price-features li::before {
  content: "✓";
  color: var(--green);
  font-weight: 800;
  flex-shrink: 0;
}

.compare-note {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: var(--ink-faint);
}

/* Testimonials */
.quotes {
  display: grid;
  gap: 1rem;
}

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

.quote {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
}

.stars {
  color: #f5a524;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.quote p {
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.quote-user {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.quote-user strong {
  display: block;
  font-size: 0.9rem;
}

.quote-user span {
  font-size: 0.78rem;
  color: var(--ink-faint);
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin-inline: auto;
  display: grid;
  gap: 0.65rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-item summary {
  padding: 1.05rem 1.15rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

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

.faq-item summary::after {
  content: "+";
  color: var(--ink-faint);
  font-size: 1.25rem;
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 1.15rem 1.15rem;
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* CTA */
.cta-band {
  padding: 2rem 0 5rem;
}

.cta-box {
  background: var(--blue);
  color: #fff;
  border-radius: 28px;
  padding: 2.75rem 1.75rem;
  text-align: center;
}

.cta-box h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.65rem;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 38ch;
  margin: 0 auto 1.5rem;
}

.cta-box .btn-dark {
  background: #fff;
  color: var(--blue);
}

.cta-box .checks {
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
}

.cta-box .checks span::before {
  color: #fff;
}

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.25rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

.footer-brand p {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
  max-width: 28ch;
}

.footer h4 {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
  margin-bottom: 0.85rem;
}

.footer-col {
  display: grid;
  gap: 0.55rem;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--ink-muted);
  font-weight: 500;
}

.footer-col a:hover {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.8125rem;
  color: var(--ink-faint);
}

/* Legal pages */
.legal-page {
  padding: 2.5rem 0 4rem;
}

.legal-header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.legal-page h1 {
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.legal-meta {
  font-size: 0.875rem;
  color: var(--ink-faint);
}

.legal-content {
  max-width: 720px;
}

.legal-content h2 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-content h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-top: 1.35rem;
  margin-bottom: 0.5rem;
}

.legal-content p,
.legal-content li {
  color: var(--ink-muted);
  font-size: 0.975rem;
  line-height: 1.7;
  margin-bottom: 0.85rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.legal-content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content .callout {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.15rem 1.25rem;
  margin: 1.5rem 0;
}

.legal-content .callout p {
  margin-bottom: 0.35rem;
}

.legal-content .callout p:last-child {
  margin-bottom: 0;
}

.legal-content .callout strong {
  color: var(--ink);
}

.delete-form {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
  max-width: 480px;
}

.delete-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.delete-form input,
.delete-form textarea {
  width: 100%;
  font: inherit;
  font-size: 0.9375rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  margin-bottom: 1rem;
}

.delete-form input:focus,
.delete-form textarea:focus {
  outline: 2px solid rgba(27, 26, 255, 0.3);
  border-color: var(--blue);
}

.delete-form textarea {
  min-height: 100px;
  resize: vertical;
}

.delete-form .help {
  font-size: 0.8125rem;
  color: var(--ink-faint);
  margin-top: -0.65rem;
  margin-bottom: 1rem;
}

.delete-success {
  display: none;
  background: #e8faf0;
  border: 1px solid #b6efd0;
  color: #067647;
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
  margin-top: 1rem;
  font-size: 0.9375rem;
  font-weight: 600;
}

.delete-success.show {
  display: block;
}
