:root {
  --primary: #b45309;
  --primary-dark: #9a3412;
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #fff6ef;
  --text: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --radius: 16px;
  --shadow: 0 10px 24px rgba(17, 24, 39, 0.06);
  --focus-ring: #0f766e;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Heebo", "Assistant", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.45;
}

.skip-link {
  position: absolute;
  top: 12px;
  right: 12px;
  transform: translateY(-160%);
  background: var(--text);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 30;
  text-decoration: none;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.container {
  width: min(1100px, 92vw);
  margin-inline: auto;
}

.narrow {
  width: min(820px, 92vw);
}

.section {
  padding: 64px 0;
}

.section-muted {
  background: var(--surface-soft);
}

.section-accent {
  background: linear-gradient(180deg, #fff8f3 0%, #fff1e6 100%);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--border);
}

.topbar-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
}

.brand-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.accessibility-widget {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 25;
}

.accessibility-toggle,
.accessibility-option {
  font: inherit;
}

.accessibility-toggle {
  min-height: 46px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  padding: 0 16px;
  font-weight: 700;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.accessibility-panel {
  width: min(240px, calc(100vw - 36px));
  margin-top: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 14px;
  display: grid;
  gap: 10px;
}

.accessibility-panel[hidden] {
  display: none;
}

.accessibility-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.accessibility-title {
  color: var(--text);
  font-weight: 800;
  font-size: 0.95rem;
}

.accessibility-dismiss {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  padding: 0;
  font-size: 0.85rem;
  font-weight: 700;
}

.accessibility-option {
  min-height: 42px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff7f0;
  color: var(--text);
  text-align: right;
  padding: 0 12px;
  cursor: pointer;
}

.accessibility-option[aria-pressed="true"] {
  border-color: #f1b486;
  background: #fff0e1;
  color: var(--primary-dark);
}

.hero-grid {
  display: grid;
  gap: 24px;
}

.hero {
  background: linear-gradient(145deg, #fff1e5 0%, #ffffff 58%);
}

.hero-logo {
  width: clamp(90px, 18vw, 130px);
  height: auto;
  display: block;
  margin-bottom: 14px;
}

.eyebrow {
  display: inline-block;
  color: var(--primary-dark);
  background: #ffe4cf;
  font-weight: 700;
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 14px;
}

h1 {
  font-size: clamp(1.9rem, 5.4vw, 3.1rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(1.45rem, 4.2vw, 2.25rem);
  margin-bottom: 18px;
  line-height: 1.2;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

p {
  color: var(--muted);
}

a,
button,
input,
select,
summary {
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero p {
  font-size: 1.08rem;
  max-width: 62ch;
}

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

.hero-micro {
  margin-top: 14px;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.98rem;
}

.hero-offer {
  margin-top: 10px;
  font-size: 0.92rem;
  color: var(--muted);
}

.hero-trust {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.hero-trust span {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-note {
  margin-top: 14px;
  font-size: 0.95rem;
}

.hero-card,
.card,
.pricing-card,
.cta-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 22px;
}

.hero-card h2 {
  font-size: 1.35rem;
}

.hero-card ul,
.pricing-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.hero-card li,
.pricing-card li {
  padding-right: 22px;
  position: relative;
  color: var(--text);
}

.hero-card li::before,
.pricing-card li::before {
  content: "✓";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--primary);
  font-weight: 800;
}

.pain-grid,
.trust-grid,
.demo-grid {
  display: grid;
  gap: 14px;
}

.feature-grid {
  display: grid;
  gap: 14px;
}

.feature-card h3 {
  color: var(--text);
}

.clarity-card {
  background: linear-gradient(135deg, #fff7f0 0%, #ffffff 100%);
  border: 1px solid #ffd8bd;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  margin-bottom: 14px;
}

.clarity-card h3 {
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.clarity-card p {
  color: var(--text);
}

.card {
  padding: 18px;
}

.steps {
  display: grid;
  gap: 12px;
}

.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  font-weight: 600;
}

.step span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  margin-left: 10px;
}

.pricing-card {
  max-width: 540px;
  margin-inline: auto;
  padding: 24px;
}

.pricing-grid {
  display: grid;
  gap: 14px;
}

.pricing-grid .pricing-card {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  align-items: start;
  height: 100%;
  text-align: center;
}

.pricing-grid .btn-block {
  margin-top: auto;
}

.plan-badge {
  display: inline-block;
  background: #ffe8d6;
  color: var(--primary-dark);
  border: 1px solid #ffd1b0;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 10px;
  justify-self: center;
}

.plan-badge-placeholder {
  visibility: hidden;
}

.pricing-card-featured {
  border-color: #ffc79c;
  box-shadow: 0 12px 24px rgba(255, 106, 0, 0.12);
}

.pricing-benefits {
  margin-top: 14px;
  max-width: 100%;
}

.plan-name {
  color: var(--text);
  font-weight: 700;
  margin-bottom: 4px;
}

.price {
  color: var(--text);
  font-size: clamp(2rem, 6vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 4px;
}

.price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
}

.monthly-option {
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.price-note {
  margin-bottom: 16px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  padding: 12px 14px;
}

summary {
  cursor: pointer;
  font-weight: 700;
}

details p {
  margin-top: 10px;
}

.cta {
  padding-top: 40px;
  padding-bottom: 84px;
}

.cta-box {
  background: linear-gradient(140deg, #ffffff 0%, #fff4eb 100%);
  padding: 24px;
}

.lead-form {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--text);
  font-weight: 600;
}

input,
select {
  border: 1px solid var(--border);
  border-radius: 10px;
  min-height: 46px;
  padding: 0 12px;
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
}

input:focus,
select:focus {
  outline: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95);
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  border: 1px solid transparent;
  padding: 12px 18px;
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

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

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

.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-secondary {
  border-color: var(--border);
  background: #fff7f0;
  color: var(--text);
}

.btn-link {
  border-color: var(--border);
  color: var(--text);
  background: transparent;
}

.btn-block {
  width: 100%;
}

.footnote {
  margin-top: 10px;
  font-size: 0.85rem;
}

.included-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
}

.included-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.included-card li {
  padding-right: 22px;
  position: relative;
  color: var(--text);
}

.included-card li::before {
  content: "✓";
  color: var(--primary);
  position: absolute;
  right: 0;
  top: 0;
  font-weight: 800;
}

.demo-item h3 {
  color: var(--text);
}

.social-proof-strip {
  display: grid;
  gap: 6px 14px;
  margin-top: 12px;
}

.social-proof-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
}

.footer {
  border-top: 1px solid var(--border);
  background: #fffaf6;
  padding: 22px 0;
}

.footer p {
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 10px;
}

.footer-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.footer-note {
  margin-top: 10px;
  font-size: 0.82rem;
}

.legal-page {
  display: grid;
  gap: 20px;
}

.legal-page h1 {
  margin-bottom: 4px;
}

.legal-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
}

.legal-section h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.legal-list {
  margin: 0;
  padding: 0 20px 0 0;
  color: var(--text);
  display: grid;
  gap: 8px;
}

.legal-placeholder {
  color: var(--primary-dark);
  font-weight: 700;
}

.a11y-large-text {
  font-size: 112%;
}

.a11y-readable-font {
  font-family: "Assistant", "Arial", sans-serif;
}

.a11y-high-contrast {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --text: #050505;
  --muted: #202020;
  --border: #111827;
  --shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  --focus-ring: #005fcc;
}

.a11y-high-contrast .hero,
.a11y-high-contrast .section-accent,
.a11y-high-contrast .cta-box,
.a11y-high-contrast .clarity-card {
  background: #ffffff;
}

.a11y-high-contrast .eyebrow,
.a11y-high-contrast .plan-badge,
.a11y-high-contrast .accessibility-option[aria-pressed="true"] {
  background: #111827;
  color: #ffffff;
  border-color: #111827;
}

.a11y-high-contrast .btn-primary {
  background: #111827;
  color: #ffffff;
}

.a11y-high-contrast .btn-secondary,
.a11y-high-contrast .btn-link,
.a11y-high-contrast .accessibility-toggle,
.a11y-high-contrast .accessibility-option {
  background: #ffffff;
  color: #111827;
  border-color: #111827;
}

@media (min-width: 740px) {
  .accessibility-widget {
    left: 24px;
    bottom: 24px;
  }
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

  .pain-grid,
  .trust-grid,
  .demo-grid,
  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .social-proof-strip {
    display: flex;
    flex-wrap: wrap;
  }

  .section {
    padding: 80px 0;
  }

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