:root {
  --brand: #e8792c;
  --brand-dark: #c1652f;
  --brand-ink: #211d1a;
  --brand-surface: #f7f4ee;
  --bg: #f7f4ee;
  --surface: #ffffff;
  --surface-alt: #f3efe6;
  --ink: #211d1a;
  --ink-2: #2c2723;
  --text: #211d1a;
  --muted: #6b645c;
  --border: #e2d9cc;
  --danger: #b91c1c;
  --ok: #15803d;
  --radius: 10px;
  --shadow-sm: 0 1px 2px rgba(33, 29, 26, 0.06);
  --shadow-md: 0 12px 28px -10px rgba(33, 29, 26, 0.18);
  --shadow-lg: 0 30px 60px -20px rgba(33, 29, 26, 0.28);
  --font: "Plus Jakarta Sans", "Segoe UI", "Helvetica Neue", sans-serif;
  --marketing-max: 1100px;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(1200px 500px at 10% -10%, color-mix(in srgb, var(--brand) 14%, transparent), transparent),
    linear-gradient(180deg, #fffdf9 0%, var(--bg) 42%, #efe8dc 100%);
  min-height: 100vh;
}

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.5rem;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand-logo { width: 36px; height: 36px; object-fit: contain; border-radius: 6px; }
.brand-name { font-weight: 700; font-size: 1.1rem; color: var(--text); text-decoration: none; }

.app-nav { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; }
.app-nav a { color: var(--muted); font-weight: 600; font-size: 0.92rem; }
.app-nav a:hover { color: var(--brand); text-decoration: none; }

.container { max-width: 1100px; margin: 0 auto; padding: 1.5rem; }

.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.page-header h1 { margin: 0; font-size: 1.6rem; }

.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.grid { display: grid; gap: 1rem; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.stat { padding: 1rem; border-radius: var(--radius); background: color-mix(in srgb, var(--brand) 8%, white); }
.stat .label { color: var(--muted); font-size: 0.85rem; }
.stat .value { font-size: 1.6rem; font-weight: 700; }

table { width: 100%; border-collapse: collapse; }
th, td { text-align: left; padding: 0.65rem 0.4rem; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
th { color: var(--muted); font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.03em; }

label { display: block; font-weight: 600; margin-bottom: 0.35rem; font-size: 0.9rem; }
input, select, textarea {
  width: 100%;
  padding: 0.6rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font: inherit;
  background: #fff;
  margin-bottom: 0.9rem;
}
textarea { min-height: 100px; resize: vertical; }

.btn {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.55rem 1.15rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}
.btn:hover { filter: brightness(0.96); text-decoration: none; color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary { background: #fff; color: var(--text); border: 1px solid var(--border); box-shadow: none; }
.btn-secondary:hover { color: var(--text); box-shadow: var(--shadow-sm); }
.btn-danger { background: var(--danger); }
.btn-sm { padding: 0.42rem 0.95rem; font-size: 0.88rem; }
.btn:disabled,
.btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  filter: none;
}

.alert {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.alert-error { background: #fef2f2; color: var(--danger); border: 1px solid #fecaca; }
.alert-ok { background: #f0fdf4; color: var(--ok); border: 1px solid #bbf7d0; }

.form-actions { display: flex; gap: 0.75rem; align-items: center; margin-top: 0.5rem; }
.inline { display: inline; }
.linkish {
  background: none; border: none; color: var(--muted); font: inherit; font-weight: 600;
  cursor: pointer; padding: 0;
}
.linkish:hover { color: var(--brand); }

.muted { color: var(--muted); }
.stack > * + * { margin-top: 0.75rem; }

/* ---------- Marketing shell ---------- */
.marketing-shell {
  background:
    radial-gradient(900px 420px at 85% -5%, color-mix(in srgb, var(--brand) 20%, transparent), transparent),
    radial-gradient(700px 360px at 5% 10%, color-mix(in srgb, var(--brand) 10%, transparent), transparent),
    linear-gradient(180deg, #f7f9fd 0%, var(--bg) 45%, #eef2f8 100%);
}

.marketing-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  max-width: var(--marketing-max);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  min-height: 84px;
}

.marketing-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
  flex-shrink: 0;
}
.marketing-logo__img {
  display: block;
  height: 72px;
  width: auto;
  max-width: 340px;
  object-fit: contain;
}

.marketing-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.marketing-nav a:not(.btn) {
  color: var(--muted);
  font-weight: 600;
  text-decoration: none;
}
.marketing-nav a:not(.btn):hover { color: var(--brand); }

.marketing-main {
  max-width: var(--marketing-max);
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}

.marketing-footer {
  border-top: 1px solid var(--border);
  margin-top: 2rem;
  background: color-mix(in srgb, var(--surface) 80%, transparent);
}
.marketing-footer-inner {
  max-width: var(--marketing-max);
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.92rem;
}
.marketing-footer nav { display: flex; gap: 1rem; flex-wrap: wrap; }
.marketing-footer a { color: var(--muted); font-weight: 600; }
.marketing-footer a:hover { color: var(--brand); }

.mkt-hero {
  padding: 3.5rem 0 2rem;
  max-width: none;
}
.mkt-page-hero {
  padding: 2.5rem 0 2.5rem;
  max-width: 720px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}
.mkt-eyebrow {
  color: var(--brand);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin: 0 0 0.75rem;
}
.mkt-hero h1,
.mkt-page-hero h1 {
  margin: 0 0 0.9rem;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}
.mkt-lead {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
  margin: 0 0 1.25rem;
  max-width: 54ch;
}
.mkt-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.mkt-fineprint {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}
.mkt-fineprint code {
  background: color-mix(in srgb, var(--brand) 8%, white);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  font-size: 0.85em;
}

.trust-row { display: flex; flex-wrap: wrap; gap: 0.85rem 1.6rem; margin-top: 1.4rem; }
.trust-badge { display: flex; align-items: center; gap: 0.45rem; color: var(--muted); font-size: 0.85rem; font-weight: 600; }
.trust-badge svg { width: 17px; height: 17px; color: var(--brand); flex-shrink: 0; }

.hero-visual { position: relative; }
.browser-frame {
  background: var(--surface);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.browser-frame-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.65rem 0.9rem;
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
}
.browser-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border); }
.browser-dot:nth-child(1) { background: #f87171; }
.browser-dot:nth-child(2) { background: #fbbf24; }
.browser-dot:nth-child(3) { background: #34d399; }
.browser-frame-body { padding: 1.4rem; }
.hero-float-card {
  position: absolute;
  left: -1.25rem;
  bottom: -1.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 0.85rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 240px;
}
.hero-float-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: color-mix(in srgb, var(--ok) 15%, white);
  color: var(--ok);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-float-icon svg { width: 18px; height: 18px; }
.hero-float-card .label { display: block; font-size: 0.72rem; color: var(--muted); font-weight: 600; }
.hero-float-card .value { display: block; font-size: 1.05rem; font-weight: 800; color: var(--text); }

.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  padding: 0 0 2.5rem;
}
.stat-strip-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}
.stat-strip-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: color-mix(in srgb, var(--brand) 12%, white);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stat-strip-icon svg { width: 18px; height: 18px; }
.stat-strip-item .value { display: block; font-weight: 800; font-size: 1.02rem; color: var(--text); }
.stat-strip-item .label { display: block; font-size: 0.82rem; color: var(--muted); }

.mkt-section { padding: 2.5rem 0; }
.mkt-section-alt {
  margin: 0 -1.5rem;
  padding: 2.5rem 1.5rem;
  background: color-mix(in srgb, var(--surface) 70%, transparent);
  border-block: 1px solid var(--border);
}
.mkt-section-ink {
  margin: 0 -1.5rem;
  padding: 2.75rem 1.5rem;
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 100%);
  border-radius: 24px;
  color: #fff;
}
.mkt-section-ink .mkt-section-head h2 { color: #fff; }
.mkt-section-ink .mkt-section-head p { color: rgba(255, 255, 255, 0.62); }
.mkt-section-ink .steps li {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}
.mkt-section-ink .steps h3 { color: #fff; }
.mkt-section-ink .steps p { color: rgba(255, 255, 255, 0.62); }
.mkt-section-ink .step-num {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}
.mkt-section-head {
  max-width: 560px;
  margin-bottom: 1.5rem;
}
.mkt-section-head h2 {
  margin: 0 0 0.5rem;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
}
.mkt-section-head p { margin: 0; color: var(--muted); line-height: 1.5; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.15rem 1.2rem;
}
.feature-card h3 { margin: 0 0 0.45rem; font-size: 1.05rem; }
.feature-card p { margin: 0; color: var(--muted); line-height: 1.45; font-size: 0.95rem; }

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.steps li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.15rem;
  box-shadow: var(--shadow-sm);
}
.step-num {
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}
.steps h3 { margin: 0 0 0.3rem; font-size: 1.05rem; }
.steps p { margin: 0; color: var(--muted); line-height: 1.45; }

.credibility {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 100%);
  border: none;
  border-radius: 20px;
  padding: 3.25rem 2.5rem 2.75rem;
  box-shadow: var(--shadow-lg);
}
.credibility::before {
  content: "\201C";
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.5rem;
  line-height: 1;
  color: color-mix(in srgb, var(--brand) 55%, white);
  margin-bottom: -1.1rem;
}
.credibility h2 { margin: 0 0 0.6rem; font-size: 1.35rem; color: #fff; }
.credibility p {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

.pricing-teaser { max-width: 420px; }
.pricing-teaser-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.35rem;
  margin-bottom: 0.85rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.pricing-teaser-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.pricing-teaser-card h3 { margin: 0 0 0.4rem; }
.price-line { margin: 0 0 0.75rem; display: flex; align-items: baseline; gap: 0.4rem; }
.price { font-size: 1.8rem; font-weight: 800; letter-spacing: -0.03em; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.price-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.price-card-featured {
  border-color: color-mix(in srgb, var(--brand) 45%, var(--border));
  box-shadow: 0 0 0 1px var(--brand), var(--shadow-lg);
}
.price-card-soon { opacity: 0.92; }
.plan-badge {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--brand);
}
.muted-badge { color: var(--muted); }
.price-card h2 { margin: 0; font-size: 1.35rem; }
.plan-features {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}
.pricing-note { max-width: 62ch; }

/* ---------- Auth / signup ---------- */
.auth-card-wrap {
  display: flex;
  justify-content: center;
  padding: 2rem 0 3rem;
}
.auth-card {
  width: 100%;
  max-width: 460px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-md);
}
.auth-card h1 { margin: 0 0 0.5rem; font-size: 1.55rem; }
.auth-form fieldset {
  border: none;
  margin: 0 0 1rem;
  padding: 0;
}
.auth-form legend {
  font-weight: 700;
  margin-bottom: 0.65rem;
  padding: 0;
}
.auth-alt { margin: 1rem 0 0; }
.slug-live { margin: -0.35rem 0 0.9rem; font-size: 0.9rem; }

.signup-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: start;
  padding: 2rem 0 3rem;
}
.signup-aside { padding-top: 0.5rem; }
.signup-aside h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
}
.trust-list {
  margin: 1.25rem 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.7;
}
.signup-form-panel { max-width: none; }

.success-card { max-width: 560px; }
.workspace-link-box {
  background: color-mix(in srgb, var(--brand) 6%, white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  margin: 1rem 0 1.25rem;
}
.workspace-link-box label {
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.workspace-link {
  word-break: break-all;
  font-weight: 700;
  font-size: 1.02rem;
}

/* ---------- Interactive marketing ---------- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}
.audience-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem 1.3rem;
  box-shadow: var(--shadow-sm);
}
.audience-card h3 { margin: 0 0 0.75rem; font-size: 1.1rem; }
.audience-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.65;
}
.audience-yes { border-color: color-mix(in srgb, var(--ok) 35%, var(--border)); }
.audience-no { border-color: color-mix(in srgb, var(--danger) 25%, var(--border)); }
.audience-note { margin: 0.85rem 0 0; font-size: 0.9rem; }

.feature-tabs {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.feature-tablist {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0.75rem;
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--brand) 4%, white);
}
.feature-tab {
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  cursor: pointer;
}
.feature-tab:hover { color: var(--brand); }
.feature-tab.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.feature-panels { padding: 1.25rem 1.35rem 1.5rem; }
.feature-panel[hidden] { display: none; }
.feature-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  align-items: center;
}
.feature-panel h3 { margin: 0.55rem 0 0.45rem; font-size: 1.25rem; }
.feature-panel p { margin: 0 0 1rem; color: var(--muted); line-height: 1.5; max-width: 60ch; }
.status-pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
}
.status-now {
  background: color-mix(in srgb, var(--ok) 14%, white);
  color: var(--ok);
}
.status-soon {
  background: color-mix(in srgb, var(--muted) 16%, white);
  color: var(--muted);
}
.ui-mock-frame {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 200px;
  display: flex;
  flex-direction: column;
}
.ui-mock-frame-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  align-items: center;
}
.ui-mock {
  display: grid;
  gap: 0.45rem;
  width: 100%;
  max-width: 420px;
}
.ui-mock-row {
  background: color-mix(in srgb, var(--brand) 5%, #f8fafc);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.65rem 0.8rem;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.ui-mock-total { font-weight: 700; }
.mock-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #94a3b8;
  flex: 0 0 auto;
}
.mock-dot-blue { background: #2563eb; }
.mock-dot-orange { background: #ea580c; }
.roadmap-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.7;
}

.calc-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: var(--shadow-md);
}
.calc-controls label { margin-top: 0.25rem; }
.calc-meta { min-height: 2.6em; font-size: 0.88rem; }
.calc-results {
  background: color-mix(in srgb, var(--brand) 5%, white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.1rem;
}
.calc-result-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
  color: var(--muted);
  font-size: 0.95rem;
}
.calc-result-row strong { color: var(--text); }
.calc-total {
  border-bottom: none;
  margin-top: 0.25rem;
  font-size: 1.05rem;
  color: var(--text);
}
.calc-total strong { font-size: 1.25rem; color: var(--brand); }

.compare-scroll {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  margin: 0;
}
.compare-table th,
.compare-table td {
  padding: 0.85rem 0.9rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  font-size: 0.92rem;
}
.compare-table th {
  background: color-mix(in srgb, var(--brand) 5%, white);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.88rem;
  color: var(--text);
}
.th-sub {
  display: block;
  font-weight: 500;
  color: var(--muted);
  font-size: 0.75rem;
  margin-top: 0.2rem;
}
.compare-table td.yes { color: var(--ok); font-weight: 700; }
.compare-table td.no { color: var(--muted); }
.compare-table td.partial { color: #b45309; font-weight: 600; }

.faq-list { display: grid; gap: 0.65rem; max-width: 760px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--muted);
  font-weight: 700;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  margin: 0.75rem 0 0.15rem;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 860px) {
  .signup-layout { grid-template-columns: 1fr; }
  .marketing-header { flex-direction: column; align-items: flex-start; }
  .calc-card { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 1rem; max-width: 460px; }
  .hero-float-card { position: static; margin-top: 1rem; max-width: none; }
  .feature-panel-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .app-header { flex-direction: column; align-items: flex-start; }
  .page-header { flex-direction: column; align-items: flex-start; }
  .mkt-hero { padding-top: 2rem; }
}
