/* RemoveHQ - clean static site styles */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px; line-height: 1.6;
  color: #0f172a; background: #ffffff;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}

/* Color tokens */
:root {
  --accent: #2563eb;       /* blue 600 - more energetic than amber */
  --accent-hover: #1d4ed8; /* blue 700 */
  --accent-soft: #dbeafe;  /* blue 100 */
  --ink: #0f172a;          /* slate 900 */
  --ink-2: #334155;        /* slate 700 */
  --muted: #64748b;        /* slate 500 */
  --line: #e2e8f0;         /* slate 200 */
  --soft: #f8fafc;         /* slate 50 */
  --success: #16a34a;
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.container-tight { max-width: 760px; margin: 0 auto; padding: 0 24px; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

/* Display headline font - subtle serif pairing for differentiation */
.display {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* Navigation */
nav.site-nav {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
nav.site-nav .container { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { font-size: 19px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; text-decoration: none; }
.brand b { color: var(--accent); font-weight: 800; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--ink-2); font-size: 14.5px; font-weight: 500; text-decoration: none; }
.nav-links a:hover { color: var(--ink); }

/* Buttons */
.btn {
  display: inline-block; padding: 12px 22px; border-radius: 10px;
  font-size: 15px; font-weight: 600; text-decoration: none !important;
  transition: all 0.15s ease; cursor: pointer; border: 0;
  white-space: nowrap; letter-spacing: -0.005em;
}
.btn-primary {
  background: #0f172a !important; color: #ffffff !important;
  box-shadow: 0 1px 2px rgba(15,23,42,0.10), 0 4px 12px rgba(15,23,42,0.12);
}
.btn-primary:hover {
  background: #1e293b !important; color: #ffffff !important; transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(15,23,42,0.15), 0 8px 20px rgba(15,23,42,0.18);
}
.btn-accent {
  background: var(--accent) !important; color: #ffffff !important;
  box-shadow: 0 1px 2px rgba(37,99,235,0.15), 0 4px 14px rgba(37,99,235,0.30);
}
.btn-accent:hover {
  background: var(--accent-hover) !important; color: #ffffff !important; transform: translateY(-1px);
}
.btn-ghost {
  background: transparent !important; color: var(--ink) !important;
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: var(--soft) !important; color: var(--ink) !important; border-color: var(--ink-2); }
.btn-lg { padding: 16px 34px; font-size: 16.5px; border-radius: 12px; font-weight: 600; }

/* Hero */
.hero { padding: 96px 0 80px; text-align: center; position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(circle at 20% 10%, rgba(37,99,235,0.06), transparent 40%),
    radial-gradient(circle at 80% 0%, rgba(37,99,235,0.04), transparent 50%);
}
.hero .eyebrow {
  display: inline-block; font-size: 13px; font-weight: 600;
  color: var(--accent); letter-spacing: 0.06em; text-transform: uppercase;
  padding: 7px 14px; background: var(--accent-soft); border-radius: 999px; margin-bottom: 28px;
}
.hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 68px; font-weight: 600; letter-spacing: -0.035em;
  line-height: 1.02; color: var(--ink); margin-bottom: 24px; max-width: 880px;
  margin-left: auto; margin-right: auto;
}
.hero h1 b { color: var(--accent); font-weight: 600; font-style: italic; }
.hero .sub {
  font-size: 20px; color: var(--ink-2); max-width: 620px; margin: 0 auto 40px;
  line-height: 1.55;
}
.hero .cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.checks { color: var(--muted); font-size: 14px; display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; }
.checks span::before { content: "✓"; color: var(--success); font-weight: 700; margin-right: 6px; }

/* Sections */
section { padding: 88px 0; }
section.soft { background: var(--soft); }
section h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 44px; font-weight: 600; letter-spacing: -0.025em;
  text-align: center; color: var(--ink); margin-bottom: 14px; line-height: 1.12;
}
section .lede { text-align: center; color: var(--ink-2); max-width: 600px; margin: 0 auto 56px; font-size: 18px; }

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  padding: 32px 28px; background: #ffffff; border: 1px solid var(--line);
  border-radius: 16px; transition: all 0.2s; position: relative;
}
.step:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(15,23,42,0.06); }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--accent-soft); color: var(--accent);
  font-weight: 700; font-size: 16px; margin-bottom: 18px;
  font-family: 'Fraunces', Georgia, serif;
}
.step-num.danger {
  background: #fee2e2; color: #dc2626;
  font-family: inherit; font-size: 18px; font-weight: 800;
}

/* Display italic */
em { font-style: italic; color: var(--accent); font-weight: 600; }
.step h3 { font-size: 21px; font-weight: 600; margin-bottom: 10px; color: var(--ink); letter-spacing: -0.01em; }
.step p { color: var(--ink-2); font-size: 15px; line-height: 1.65; }

/* Stat strip */
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  padding: 56px 48px; background: var(--ink); color: #ffffff; border-radius: 20px;
  margin-top: 24px;
  background-image: radial-gradient(circle at 90% 10%, rgba(37,99,235,0.25), transparent 50%);
}
.stat { text-align: center; }
.stat .num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 52px; font-weight: 600; letter-spacing: -0.025em;
}
.stat .num b { color: #60a5fa; font-weight: 600; font-style: italic; }
.stat .lbl { font-size: 14px; color: #94a3b8; margin-top: 6px; }

/* Two-col content */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.two-col h2 { text-align: left; }
.two-col .copy p { color: var(--ink-2); font-size: 17px; margin-bottom: 16px; line-height: 1.7; }
.bullet-list { list-style: none; padding: 0; }
.bullet-list li {
  padding: 12px 0 12px 28px; position: relative; color: var(--ink-2);
  font-size: 15.5px; border-bottom: 1px solid var(--line); line-height: 1.5;
}
.bullet-list li:last-child { border: 0; }
.bullet-list li::before {
  content: "→"; position: absolute; left: 0; color: var(--accent); font-weight: 700;
}

/* Questions / FAQ */
.faq { max-width: 760px; margin: 0 auto; }
.q { border-bottom: 1px solid var(--line); padding: 24px 0; }
.q:first-child { padding-top: 0; }
.q h3 { font-size: 18px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.q p { color: var(--ink-2); font-size: 15px; line-height: 1.65; }

/* CTA section */
.cta-band {
  text-align: center; padding: 72px 32px; position: relative; overflow: hidden;
  background: var(--ink); color: #ffffff; border-radius: 20px;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(37,99,235,0.30), transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(37,99,235,0.20), transparent 50%);
}
.cta-band h2 { color: #ffffff; margin-bottom: 14px; font-size: 36px; }
.cta-band p { color: #cbd5e1; font-size: 17px; margin-bottom: 28px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* Footer */
footer { padding: 64px 0 36px; border-top: 1px solid var(--line); margin-top: 32px; }
.foot { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.foot h4 {
  font-size: 12px; font-weight: 600; color: var(--ink);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px;
}
.foot a { display: block; color: var(--ink-2); font-size: 14px; padding: 5px 0; text-decoration: none; }
.foot a:hover { color: var(--ink); }
.foot .about p { color: var(--muted); font-size: 14px; line-height: 1.7; }
.foot-legal {
  border-top: 1px solid var(--line); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--muted); font-size: 13px; flex-wrap: wrap; gap: 12px;
}

/* Legal pages */
.legal { padding: 64px 0 96px; }
.legal h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 44px; font-weight: 600; letter-spacing: -0.025em; margin-bottom: 6px;
}
.legal .updated { color: var(--muted); font-size: 12px; margin-bottom: 40px; text-transform: uppercase; letter-spacing: 0.06em; }
.legal h2 {
  text-align: left; font-size: 22px; margin: 36px 0 12px;
  color: var(--ink); font-weight: 600; letter-spacing: -0.01em;
}
.legal h3 { font-size: 17px; margin: 20px 0 8px; color: var(--ink); font-weight: 600; }
.legal p, .legal ul, .legal ol {
  margin-bottom: 14px; color: var(--ink-2); font-size: 15px; line-height: 1.75;
}
.legal ul, .legal ol { padding-left: 24px; }
.legal li { margin-bottom: 6px; }
.legal strong { color: var(--ink); font-weight: 600; }

/* About page details list */
.detail-list {
  list-style: none; padding: 0; margin-top: 8px;
  border-top: 1px solid var(--line);
}
.detail-list li {
  display: grid; grid-template-columns: 180px 1fr; gap: 24px;
  padding: 16px 0; border-bottom: 1px solid var(--line);
  font-size: 15.5px;
}
.detail-list li strong {
  color: var(--ink); font-weight: 600;
}
.detail-list li span { color: var(--ink-2); }

/* Form */
.form-block {
  max-width: 580px; margin: 32px auto 0;
  padding: 40px; background: #ffffff;
  border: 1px solid var(--line); border-radius: 16px;
  box-shadow: 0 4px 16px rgba(15,23,42,0.04);
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block; font-size: 13.5px; font-weight: 600;
  color: var(--ink); margin-bottom: 6px; letter-spacing: 0.01em;
}
.form-row input, .form-row textarea, .form-row select {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--line); border-radius: 8px;
  font-family: inherit; font-size: 15px; background: #ffffff;
  transition: border-color 0.15s;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: 0; border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-row textarea { min-height: 110px; resize: vertical; }
.form-row .hint { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* Tablet */
@media (max-width: 980px) {
  .hero h1 { font-size: 52px; }
  section h2 { font-size: 36px; }
  .stat .num { font-size: 44px; }
}

/* Mobile */
@media (max-width: 768px) {
  nav.site-nav .container { height: 60px; }
  .brand { font-size: 17px; }
  .hero { padding: 48px 0 40px; }
  .hero h1 { font-size: 36px; line-height: 1.1; }
  .hero .sub { font-size: 16px; margin-bottom: 28px; }
  .hero .eyebrow { font-size: 11px; padding: 5px 12px; margin-bottom: 20px; }
  .hero .cta-row { flex-direction: column; gap: 10px; padding: 0 16px; }
  .hero .cta-row .btn { width: 100%; text-align: center; }
  .checks { gap: 12px 20px; font-size: 13px; }
  section { padding: 48px 0; }
  section h2 { font-size: 28px; line-height: 1.2; }
  section .lede { font-size: 16px; margin-bottom: 40px; }
  .steps { grid-template-columns: 1fr; gap: 16px; }
  .step { padding: 24px 20px; }
  .stats { grid-template-columns: 1fr; gap: 24px; padding: 32px 24px; }
  .stat .num { font-size: 40px; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .two-col h2 { text-align: center; }
  .foot { grid-template-columns: 1fr 1fr; gap: 28px; }
  .foot-legal { flex-direction: column; gap: 8px; text-align: center; }
  .nav-links a:not(.btn) { display: none; }
  .nav-links { gap: 8px; }
  .nav-links .btn { padding: 10px 16px; font-size: 14px; }
  .detail-list li { grid-template-columns: 1fr; gap: 4px; padding: 14px 0; }
  .legal { padding: 40px 0 64px; }
  .legal h1 { font-size: 30px; }
  .legal h2 { font-size: 19px; margin: 28px 0 10px; }
  .cta-band { padding: 48px 24px; border-radius: 14px; }
  .cta-band h2 { font-size: 26px; }
  .cta-band p { font-size: 15px; }
  .form-block { padding: 28px 20px; }
  .container, .container-tight { padding: 0 20px; }
}

/* Very small phones */
@media (max-width: 380px) {
  .hero h1 { font-size: 30px; }
  section h2 { font-size: 24px; }
}
