/* ===========================================================
   Ringly — landing page styles
   Mobile-first. ~600 lines. No framework.
   =========================================================== */

:root {
  --bg: #ffffff;
  --bg-soft: #faf7f3;
  --bg-dark: #0b0d12;
  --ink: #0a0e1a;
  --ink-2: #2a2f3a;
  --muted: #5a5d68;
  --muted-2: #8b8e98;
  --border: #e8e6e2;
  --border-strong: #d6d3cc;
  --accent: #ff6b47;
  --accent-2: #e8543a;
  --accent-soft: #fff1ec;
  --success: #2b9670;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 2px rgba(10, 14, 26, 0.04);
  --shadow-md: 0 4px 14px rgba(10, 14, 26, 0.06), 0 1px 2px rgba(10, 14, 26, 0.04);
  --shadow-lg: 0 20px 50px rgba(10, 14, 26, 0.12), 0 4px 12px rgba(10, 14, 26, 0.06);

  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-serif: "Fraunces", ui-serif, Georgia, "Times New Roman", serif;
}

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

/* The hidden attribute must always win over component display rules. */
[hidden] { display: none !important; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--accent); color: #fff; }

/* skip link for a11y */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: #fff;
  padding: 10px 14px; border-radius: 0 0 8px 0;
  z-index: 100;
}
.skip-link:focus { left: 0; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Typography ---------- */

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2rem, 6vw, 3.6rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
h1 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}

h2 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.025em;
}

h3 {
  font-size: 1.2rem;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

p { margin: 0; color: var(--ink-2); }

.lede {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 620px;
}

.kicker {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 22px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.06s ease, background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
  min-height: 44px;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn-primary:hover { background: #1a1f2c; }

.btn-secondary {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--border-strong);
}
.btn-secondary:hover { background: var(--bg-soft); border-color: var(--ink); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: transparent;
}
.btn-ghost:hover { background: var(--bg-soft); }

.btn-link {
  background: transparent;
  color: var(--ink);
  padding: 11px 4px;
  border-color: transparent;
}
.btn-link:hover { color: var(--accent); }

.btn-lg { padding: 14px 22px; font-size: 1rem; min-height: 50px; }
.btn-block { width: 100%; }

/* ---------- Header / nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.brand-mark { display: inline-flex; }

.nav-links {
  display: none;
  gap: 28px;
}
.nav-links a {
  color: var(--ink-2);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--accent); }

.nav-cta {
  display: none;
  gap: 6px;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  padding: 0;
  align-items: center;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.6px;
  background: var(--ink);
  border-radius: 2px;
}

.mobile-menu[hidden] { display: none; }
.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 20px 20px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.mobile-menu a:not(.btn) {
  padding: 12px 10px;
  font-weight: 500;
  color: var(--ink);
  border-radius: var(--radius-md);
}
.mobile-menu a:not(.btn):hover { background: var(--bg-soft); }
.mobile-menu .btn {
  margin-top: 8px;
  width: 100%;
}

/* ---------- Hero ---------- */

.hero {
  padding: 56px 0 64px;
  background:
    radial-gradient(ellipse 80% 50% at 80% 0%, rgba(255, 107, 71, 0.10), transparent 65%),
    radial-gradient(ellipse 70% 50% at 0% 30%, rgba(255, 107, 71, 0.06), transparent 70%),
    var(--bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  margin-bottom: 28px;
}

.hero-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 0.92rem;
  color: var(--muted);
}
.hero-meta strong { color: var(--ink); font-weight: 600; }

/* Phone mockup */
.hero-visual {
  display: flex;
  justify-content: center;
}

.phone {
  position: relative;
  width: 100%;
  max-width: 340px;
  background: var(--bg-dark);
  border-radius: 38px;
  padding: 14px 14px 18px;
  box-shadow: var(--shadow-lg);
  border: 1px solid #1a1c25;
}

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 22px;
  background: #000;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}

.phone-screen {
  background: linear-gradient(180deg, #ffffff, #fbf8f3);
  border-radius: 26px;
  padding: 44px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 480px;
}

.call-strip {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.call-strip-meta {
  flex: 1;
  min-width: 0;
}
.call-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2px;
}
.call-number {
  font-size: 0.92rem;
  font-weight: 600;
}
.call-waveform {
  display: flex;
  align-items: end;
  gap: 2px;
  height: 22px;
}
.call-waveform span {
  width: 2px;
  background: var(--accent);
  border-radius: 2px;
  animation: wave 1.1s ease-in-out infinite;
}
.call-waveform span:nth-child(1){ height: 30%; animation-delay: 0.0s; }
.call-waveform span:nth-child(2){ height: 60%; animation-delay: 0.1s; }
.call-waveform span:nth-child(3){ height: 100%; animation-delay: 0.2s; }
.call-waveform span:nth-child(4){ height: 70%; animation-delay: 0.05s; }
.call-waveform span:nth-child(5){ height: 50%; animation-delay: 0.15s; }
.call-waveform span:nth-child(6){ height: 95%; animation-delay: 0.25s; }
.call-waveform span:nth-child(7){ height: 40%; animation-delay: 0.0s; }
.call-waveform span:nth-child(8){ height: 80%; animation-delay: 0.12s; }
.call-waveform span:nth-child(9){ height: 55%; animation-delay: 0.2s; }
@keyframes wave {
  0%, 100% { transform: scaleY(0.6); }
  50% { transform: scaleY(1.2); }
}

.call-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  font-variant-numeric: tabular-nums;
}
.status-dot {
  width: 7px;
  height: 7px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6); }
  100% { box-shadow: 0 0 0 9px rgba(74, 222, 128, 0); }
}

.transcript {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 6px;
}

.bubble {
  font-size: 0.86rem;
  line-height: 1.4;
  padding: 9px 12px;
  border-radius: 16px;
  max-width: 86%;
  word-wrap: break-word;
}
.bubble-ai {
  background: var(--ink);
  color: #fff;
  border-bottom-left-radius: 5px;
  align-self: flex-start;
}
.bubble-caller {
  background: var(--accent-soft);
  color: var(--ink);
  border: 1px solid #ffd9cd;
  border-bottom-right-radius: 5px;
  align-self: flex-end;
}

.booking-toast {
  margin-top: auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
}
.toast-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e7f6ef;
  color: var(--success);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.toast-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.8rem;
}
.toast-body strong { color: var(--ink); font-weight: 600; }
.toast-body span { color: var(--muted); }

/* ---------- Stats strip ---------- */

.strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
  padding: 28px 0;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.strip-grid > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.strip-grid strong {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.strip-grid span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

/* ---------- Section heads ---------- */

.section-head {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}
.section-head h2 { margin-bottom: 16px; }
.section-head .lede { margin-left: auto; margin-right: auto; }

/* ---------- Problem ---------- */

.problem {
  padding: 80px 0;
  background: var(--bg);
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 8px;
}
.problem-card {
  padding: 26px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.problem-card h3 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.problem-card p { color: var(--muted); font-size: 0.95rem; }

/* ---------- How it works ---------- */

.how {
  padding: 80px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  counter-reset: step;
}
.steps li {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-serif);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 6px;
}
.steps p { color: var(--muted); }

/* ---------- Features ---------- */

.features { padding: 90px 0; }

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.feature {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.feature:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature h3 { margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 0.96rem; }

/* ---------- Pricing ---------- */

.pricing {
  padding: 90px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 28px;
}

.price-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.price-card.featured {
  border: 1px solid var(--ink);
  box-shadow: var(--shadow-md);
}
.price-card.featured .badge {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--ink);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
}
.price-card header { display: flex; flex-direction: column; gap: 10px; }
.price-card h3 {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.price .amount {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.price .cadence { color: var(--muted); font-size: 1rem; }
.price-card .pitch { color: var(--muted); font-size: 0.95rem; }
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}
.price-card li {
  padding-left: 26px;
  position: relative;
  color: var(--ink-2);
  font-size: 0.95rem;
  line-height: 1.4;
}
.price-card li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 7px;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.fine-print {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  max-width: 720px;
  margin: 0 auto;
}

/* ---------- FAQ ---------- */

.faq { padding: 90px 0; }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.faq .section-head { text-align: left; margin: 0 0 0 0; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.faq-list details {
  border-bottom: 1px solid var(--border);
  padding: 6px 0;
}
.faq-list details:first-of-type { border-top: 1px solid var(--border); }
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 36px 18px 0;
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--ink);
  position: relative;
  transition: color 0.15s;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--accent); }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--muted);
  transition: transform 0.2s ease;
  line-height: 1;
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-body {
  padding: 0 0 20px 0;
}
.faq-body p { color: var(--muted); font-size: 0.96rem; line-height: 1.6; }

/* ---------- CTA band ---------- */

.cta-band {
  padding: 80px 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 107, 71, 0.20), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(255, 107, 71, 0.10), transparent 70%),
    var(--ink);
  color: #fff;
}
.cta-inner { text-align: center; max-width: 740px; margin: 0 auto; }
.cta-inner h2 {
  color: #fff;
  margin-bottom: 14px;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
}
.cta-inner p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  font-size: 1.05rem;
}
.cta-band .btn-primary { background: #fff; color: var(--ink); border-color: #fff; }
.cta-band .btn-primary:hover { background: var(--accent-soft); }
.cta-band .btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
}
.cta-band .btn-ghost:hover { background: rgba(255,255,255,0.08); }
.cta-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.footer-brand .brand { font-size: 1.05rem; margin-bottom: 10px; }
.footer-tag { color: var(--muted); font-size: 0.92rem; }

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  padding: 4px 0;
}
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.82rem;
}

/* ---------- Signup form (in CTA band) ---------- */

.signup-form {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 8px auto 14px;
  flex-direction: column;
}
.signup-form input[type="email"] {
  flex: 1;
  padding: 14px 16px;
  font-size: 1rem;
  font-family: var(--font-sans);
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-md);
  min-height: 50px;
  outline: none;
  transition: border-color 0.15s, background 0.15s;
}
.signup-form input[type="email"]::placeholder { color: rgba(255,255,255,0.45); }
.signup-form input[type="email"]:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.12);
}
.signup-form button { white-space: nowrap; }

.signup-fine {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}
.signup-fine a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,0.4);
}
.signup-fine a:hover { text-decoration-color: var(--accent); }

.signup-thanks {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-md);
  color: #fff;
  max-width: 480px;
  margin: 14px auto 0;
}
.signup-thanks strong { color: #fff; font-weight: 600; }
.signup-thanks span  { color: rgba(255,255,255,0.7); font-size: 0.92rem; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ---------- Static page (prose) ---------- */

.page {
  padding: 56px 0 80px;
  background: var(--bg);
}

.prose {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-head {
  margin-bottom: 48px;
}
.page-head .kicker { margin-bottom: 14px; }
.page-head h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 18px;
}
.page-head .lede { color: var(--muted); }

.prose section { margin-bottom: 40px; }
.prose section:last-child { margin-bottom: 0; }

.prose h2 {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 14px;
}

.prose p {
  color: var(--ink-2);
  margin-bottom: 14px;
  font-size: 1rem;
  line-height: 1.65;
}
.prose p:last-child { margin-bottom: 0; }

.prose a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255,107,71,0.4);
  transition: text-decoration-color 0.15s;
}
.prose a:hover { text-decoration-color: var(--accent); }

.prose-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}
.prose-list li {
  padding-left: 22px;
  position: relative;
  color: var(--ink-2);
  margin-bottom: 10px;
  line-height: 1.6;
}
.prose-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.prose-list strong { color: var(--ink); font-weight: 600; }

.prose code {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 6px;
  font-size: 0.92em;
}

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 8px 0 48px;
}
.contact-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.contact-card h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.contact-card p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 10px;
}
.contact-mail {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  color: var(--accent) !important;
  font-size: 0.92rem;
  text-decoration: underline;
}

.contact-form {
  display: grid;
  gap: 16px;
  max-width: 560px;
}
.contact-form .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form label {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink);
}
.contact-form input,
.contact-form textarea {
  font-family: var(--font-sans);
  font-size: 1rem;
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 11px 13px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,107,71,0.15);
}
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form button { justify-self: start; margin-top: 4px; }
.contact-form .signup-thanks {
  background: var(--accent-soft);
  border: 1px solid #ffd9cd;
  color: var(--ink);
}
.contact-form .signup-thanks strong { color: var(--ink); }
.contact-form .signup-thanks span   { color: var(--muted); }

/* ===========================================================
   Breakpoints
   =========================================================== */

@media (min-width: 640px) {
  .strip-grid { grid-template-columns: repeat(4, 1fr); }
  .problem-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 2fr; }
  .signup-form { flex-direction: row; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 820px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .price-grid { grid-template-columns: repeat(3, 1fr); }
  .faq-grid { grid-template-columns: 0.85fr 1.4fr; gap: 64px; }
  .faq .section-head { position: sticky; top: 96px; align-self: start; }
}

@media (min-width: 960px) {
  .hero { padding: 80px 0 100px; }
  .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 64px; }
  .nav-links { display: inline-flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none !important; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .problem { padding: 100px 0; }
  .how { padding: 100px 0; }
  .features { padding: 110px 0; }
  .pricing { padding: 110px 0; }
  .faq { padding: 110px 0; }
}

@media (min-width: 1100px) {
  h1 { font-size: 4rem; }
  .strip-grid strong { font-size: 1.8rem; }
}

/* ===========================================================
   Print + reduced motion
   =========================================================== */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media print {
  .site-header, .cta-band, .site-footer { display: none; }
  body { color: #000; background: #fff; }
}
