:root {
  --bg: #f8fafc;
  --panel: #ffffff;
  --panel-soft: #f1f5f9;
  --text: #020617;
  --text-soft: #334155;
  --muted: #64748b;
  --faint: #94a3b8;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;
  --black: #020617;
  --green: #047857;
  --green-bg: #ecfdf5;
  --amber: #b45309;
  --amber-bg: #fffbeb;
  --shadow: 0 24px 80px rgba(15, 23, 42, 0.10);
  --shadow-soft: 0 18px 55px rgba(15, 23, 42, 0.08);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.96)),
    linear-gradient(135deg, rgba(15, 23, 42, 0.045) 0 25%, transparent 25% 100%),
    #f8fafc;
  font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, black, transparent 86%);
  pointer-events: none;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0 64px;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(203, 213, 225, 0.85);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
}

.brand-mark {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--black);
  color: white;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.16);
}

.brand-mark svg {
  width: 17px;
  height: 17px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.site-nav a,
.ghost-button,
.secondary-button,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 999px;
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.site-nav a {
  padding: 8px 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.site-nav a:hover,
.ghost-button:hover,
.secondary-button:hover {
  color: var(--text);
  background: #f8fafc;
}

.header-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}

.ghost-button,
.secondary-button {
  border: 1px solid var(--border);
  background: white;
  color: var(--text-soft);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
}

.secondary-button {
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.primary-button {
  border: 1px solid var(--black);
  background: var(--black);
  color: white;
  padding: 8px 15px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.16);
}

.primary-button:hover {
  background: #111827;
  border-color: #111827;
  transform: translateY(-1px);
}

.large {
  min-height: 46px;
  padding-inline: 20px;
  font-size: 14px;
}

.full {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: white;
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.86fr);
  gap: 42px;
  align-items: center;
  min-height: 0;
  padding: 76px 0 56px;
}

.hero-copy {
  max-width: 620px;
}

.small-pill,
.small-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: white;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.small-pill {
  padding: 8px 12px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

.small-label {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--faint);
  font-size: 12px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  margin-top: 18px;
  font-size: clamp(36px, 4.8vw, 56px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-lead {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-points {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.6;
}

.hero-points li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.check-icon {
  position: relative;
  display: inline-flex;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  margin-top: 1px;
  border: 1px solid #bbf7d0;
  border-radius: 999px;
  background: var(--green-bg);
}

.check-icon::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 4px;
  width: 6px;
  height: 10px;
  border: solid var(--green);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.hero-panel {
  overflow: hidden;
  border: 1px solid rgba(203, 213, 225, 0.95);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78)),
    linear-gradient(135deg, rgba(15, 23, 42, 0.08), rgba(16, 185, 129, 0.10) 52%, rgba(245, 158, 11, 0.10));
  box-shadow: var(--shadow);
}

.panel-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 15px 18px;
  border-bottom: 1px solid rgba(203, 213, 225, 0.8);
  background: rgba(255, 255, 255, 0.7);
}

.panel-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #cbd5e1;
}

.panel-topbar strong {
  margin-left: 8px;
  color: var(--muted);
  font-size: 12px;
}

.preview-layout {
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr);
  min-height: 450px;
}

.preview-sidebar {
  border-right: 1px solid rgba(203, 213, 225, 0.75);
  background: rgba(248, 250, 252, 0.78);
  padding: 18px 12px;
}

.preview-logo-line,
.preview-nav {
  height: 12px;
  border-radius: 999px;
  background: #e2e8f0;
}

.preview-logo-line {
  width: 74%;
  margin-bottom: 22px;
}

.preview-nav {
  height: 30px;
  margin-top: 10px;
}

.preview-nav.active {
  background: var(--black);
}

.preview-status {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 170px;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #10b981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
}

.preview-main {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 22px;
}

.preview-heading,
.job-card-header,
.proposal-card {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.tiny-label {
  display: block;
  color: var(--faint);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.preview-heading strong {
  display: block;
  margin-top: 4px;
  font-size: 18px;
}

.score-pill,
.plan-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--green-bg);
  color: var(--green);
  border: 1px solid #bbf7d0;
  font-size: 12px;
  font-weight: 800;
  padding: 7px 10px;
  white-space: nowrap;
}

.job-card,
.proposal-card {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: white;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.job-card {
  padding: 18px;
}

.job-card h2 {
  margin-top: 4px;
  font-size: 18px;
  line-height: 1.25;
}

.budget {
  color: #b45309;
  font-weight: 800;
}

.job-card p,
.proposal-card p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag-row span {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #f8fafc;
  color: var(--text-soft);
  padding: 6px 9px;
  font-size: 11px;
  font-weight: 700;
}

.proposal-card {
  align-items: center;
  padding: 16px;
}

.proposal-card p {
  margin-top: 8px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  color: var(--text);
}

.proposal-card button {
  border: 0;
  border-radius: 13px;
  background: var(--black);
  color: white;
  padding: 10px 13px;
  font-size: 12px;
  font-weight: 800;
}

.section {
  padding-top: 82px;
}

.section-heading {
  max-width: 780px;
}

.section-heading.center {
  margin: 0 auto;
  text-align: center;
}

.section-heading.compact {
  max-width: 520px;
}

.section-heading h2,
.disclosure-section h2,
.final-cta h2 {
  margin-top: 10px;
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 800;
  line-height: 1.14;
}

.section-heading p:not(.small-label),
.disclosure-section p,
.final-cta p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.problem-grid {
  grid-template-columns: repeat(4, 1fr);
}

.feature-card,
.pricing-card,
.faq-grid article,
.legal-card,
.support-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-soft);
}

.feature-card {
  padding: 22px;
}

.feature-icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #f8fafc;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.feature-card h3,
.step-item h3,
.pricing-card h3,
.faq-grid h3,
.legal-card h2,
.support-card h2 {
  margin-top: 16px;
  font-size: 17px;
  font-weight: 800;
}

.feature-card p,
.step-item p,
.pricing-card p,
.faq-item p,
.legal-card p,
.legal-card li,
.support-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.solution-section {
  padding-top: 70px;
}

.solution-card {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: white;
  box-shadow: var(--shadow);
}

.solution-list {
  display: grid;
  gap: 14px;
}

.solution-list div {
  position: relative;
  min-height: 124px;
  padding: 22px 22px 22px 58px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #f8fafc;
}

.solution-list .check-icon {
  position: absolute;
  left: 22px;
  top: 22px;
}

.solution-list strong {
  display: block;
  color: var(--text);
  font-size: 16px;
}

.solution-list p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.split-section {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 54px;
  align-items: start;
}

.step-list {
  display: grid;
  gap: 14px;
}

.step-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
}

.step-item > span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--black);
  color: white;
  font-weight: 800;
}

.step-item h3 {
  margin-top: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.pricing-card {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  padding: 24px;
}

.pricing-card.featured {
  border-color: #0f172a;
  box-shadow: 0 28px 90px rgba(15, 23, 42, 0.16);
}

.pricing-card.muted {
  background: rgba(255, 255, 255, 0.72);
}

.pricing-header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.pricing-card h3 {
  margin-top: 0;
  font-size: 21px;
}

.plan-badge.quiet {
  border-color: #fde68a;
  background: var(--amber-bg);
  color: var(--amber);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 26px;
}

.price-row strong {
  font-size: 40px;
  line-height: 1;
}

.price-row span {
  color: var(--muted);
  font-weight: 700;
}

.plan-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 auto;
  padding: 0;
  list-style: none;
}

.plan-list li {
  position: relative;
  padding-left: 26px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.65;
}

.plan-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--green-bg);
  border: 1px solid #bbf7d0;
}

.pricing-card .primary-button,
.pricing-card .secondary-button {
  margin-top: 28px;
}

.disclosure-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  align-items: center;
}

.disclosure-card {
  border: 1px solid #fed7aa;
  border-radius: var(--radius);
  background: #fff7ed;
  color: #431407;
  padding: 24px;
}

.disclosure-card h3 {
  font-size: 18px;
  margin: 0;
}

.disclosure-card p {
  margin-top: 10px;
  color: #7c2d12;
  font-size: 14px;
  line-height: 1.8;
}

.disclosure-card a {
  display: inline-flex;
  margin-top: 18px;
  color: #431407;
  font-size: 14px;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: white;
  box-shadow: 0 14px 42px rgba(15, 23, 42, 0.06);
}

.faq-item summary {
  position: relative;
  display: flex;
  min-height: 64px;
  align-items: center;
  padding: 18px 58px 18px 22px;
  color: var(--text);
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  list-style: none;
}

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

.faq-item summary::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 12px;
  height: 12px;
  border: solid var(--muted);
  border-width: 0 2px 2px 0;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 160ms ease;
}

.faq-item[open] summary::after {
  transform: translateY(-35%) rotate(225deg);
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
}

.final-cta {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  margin-top: 78px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: white;
  box-shadow: var(--shadow);
}

.final-cta > div:first-child {
  max-width: 680px;
}

.final-actions {
  margin-top: 0;
  justify-content: flex-end;
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 42px;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

.site-footer,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.site-footer strong {
  color: var(--text);
}

.site-footer p {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.6;
}

.site-footer a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

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

.footer-fineprint {
  width: 100%;
}

.compact {
  justify-content: center;
}

.legal-shell {
  width: min(980px, calc(100% - 32px));
}

.legal-page {
  padding: 56px 0 72px;
}

.legal-page h1 {
  max-width: 780px;
}

.legal-lead {
  max-width: 760px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.updated {
  margin-top: 16px;
  color: var(--faint);
  font-size: 13px;
  font-weight: 700;
}

.legal-card {
  margin-top: 18px;
  padding: 24px;
}

.legal-card h2,
.support-card h2 {
  margin-top: 0;
}

.legal-card ul {
  display: grid;
  gap: 10px;
  margin: 12px 0 0;
  padding-left: 20px;
}

.legal-card a,
.support-card a {
  color: var(--text);
  font-weight: 800;
  text-underline-offset: 4px;
}

.support-card {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding: 26px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
    flex-direction: column;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .site-header.nav-open .site-nav,
  .site-header.nav-open .header-actions {
    display: flex;
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .site-header.nav-open .site-nav {
    flex-wrap: wrap;
  }

  .hero-section,
  .split-section,
  .disclosure-section {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: 0;
    padding-top: 46px;
  }

  .hero-panel {
    max-width: 640px;
  }

  .feature-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .solution-card {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    min-height: 0;
  }

  .final-cta,
  .support-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .site-shell,
  .site-footer,
  .legal-shell {
    width: min(100% - 22px, 1180px);
  }

  .site-header {
    top: 8px;
    border-radius: 20px;
  }

  .brand span:last-child {
    font-size: 14px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 14px;
  }

  h1 {
    font-size: clamp(32px, 11vw, 44px);
  }

  .hero-lead,
  .legal-lead {
    font-size: 15px;
  }

  .hero-actions,
  .final-actions,
  .header-actions {
    width: 100%;
  }

  .hero-actions a,
  .final-actions a,
  .header-actions a {
    width: 100%;
  }

  .preview-layout {
    grid-template-columns: 1fr;
  }

  .preview-sidebar {
    display: none;
  }

  .preview-main {
    padding: 16px;
  }

  .proposal-card,
  .preview-heading,
  .job-card-header,
  .pricing-header {
    flex-direction: column;
  }

  .feature-grid,
  .pricing-grid,
  .faq-list,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 68px;
  }

  .section-heading h2,
  .disclosure-section h2,
  .final-cta h2 {
    font-size: 28px;
  }

  .feature-card,
  .pricing-card,
  .final-cta,
  .legal-card,
  .support-card {
    border-radius: 22px;
    padding: 20px;
  }

  .site-footer,
  .site-footer nav {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
