:root {
  --white: #ffffff;
  --soft: #f3f4f6;
  --ink: #000000;
  --yellow: #f2b633;
  --yellow-hover: #dfa723;
  --text: #1a1a1a;
  --muted: #6b7280;
  --line: #e5e7eb;
  --line-strong: #d1d5db;
  --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --radius: 24px;
  --container: 1240px;
  --section: clamp(80px, 10vw, 120px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
}

.font-headline {
  font-family: "Epilogue", sans-serif;
}

.font-body {
  font-family: "Manrope", sans-serif;
}

.font-label {
  font-family: "Inter", sans-serif;
}

.grid-bento {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.25rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.grid-bento:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
}

a {
  color: inherit;
  text-decoration: none;
}

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

:focus-visible {
  outline: 3px solid rgba(17, 17, 17, 0.28);
  outline-offset: 2px;
}

.container {
  width: min(var(--container), calc(100% - 3rem));
  margin: 0 auto;
}

.section {
  padding: var(--section) 0;
}

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

.eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--ink);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.eyebrow::before {
  content: "";
  width: 1.6rem;
  height: 1px;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 2rem;
  background: var(--yellow);
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: background 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

.btn:hover {
  background: var(--yellow-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(242, 182, 51, 0.3);
}

.btn-small {
  min-height: 42px;
  padding: 0.7rem 1rem;
  font-size: 0.88rem;
}

.btn-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}

.btn-ghost:hover {
  background: rgba(17, 17, 17, 0.04);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.08);
}

.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  color: var(--ink);
}

.brand-logo {
  width: 36px;
  height: 32px;
  object-fit: contain;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.main-nav a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.main-nav a:hover {
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto 5px;
  background: var(--ink);
}

.menu-toggle span:last-child {
  margin-bottom: 0;
}

.hero {
  padding-top: clamp(58px, 8vw, 96px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.9fr);
  gap: clamp(1.4rem, 3vw, 2.8rem);
  align-items: start;
}

.hero-copy h1 {
  margin-top: 0.7rem;
  font-size: clamp(2.25rem, 5.5vw, 3.3rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  max-width: 800px;
}

.lead {
  margin-top: 1rem;
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  margin-top: 1.4rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.trust-line {
  margin-top: 0.95rem;
  font-size: 0.93rem;
  color: var(--muted);
}

.hero-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #fffef9, #fff8e7 60%, #fff3d2 100%);
  box-shadow: var(--shadow);
  padding: 1.4rem;
}

.hero-panel h2 {
  font-size: 1.25rem;
  color: var(--ink);
}

.hero-panel ul {
  margin-top: 0.9rem;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.5rem;
  color: var(--muted);
}

.section-head {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-head h2 {
  margin-top: 0.6rem;
  font-size: clamp(1.95rem, 4vw, 2.65rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.section-head p {
  margin-top: 0.8rem;
  color: var(--muted);
}

.pricing-grid,
.included-grid,
.proof-grid,
.faq-list {
  display: grid;
  gap: 1rem;
}

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

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

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

.pricing-card,
.included-card,
.proof-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.pricing-card h3,
.included-card h3,
.faq-item h3 {
  font-size: 1.2rem;
  line-height: 1.2;
  color: var(--ink);
}

.pricing-card p,
.pricing-card li,
.included-card p,
.proof-card p,
.faq-item p {
  margin-top: 0.65rem;
  color: var(--muted);
}

.pricing-card ul {
  margin-top: 0.8rem;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.45rem;
}

.pricing-card .tag {
  margin-top: 0;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 800;
  color: var(--ink);
}

.pricing-card.featured {
  border-left: 4px solid var(--yellow);
}

.card-link {
  margin-top: 1rem;
  display: inline-flex;
  font-weight: 800;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.quote {
  font-size: 1rem;
  font-weight: 500;
  color: #101010;
}

.author {
  font-weight: 700;
  color: var(--ink);
}

.company {
  font-size: 0.9rem;
}

.section-cta {
  margin-top: 1.4rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.final-cta {
  background: var(--ink);
}

.final-cta-card {
  max-width: 780px;
}

.final-cta .eyebrow {
  color: var(--yellow);
}

.final-cta .eyebrow::before {
  background: var(--yellow);
}

.final-cta h2 {
  margin-top: 0.6rem;
  color: var(--white);
  font-size: clamp(1.85rem, 3.4vw, 2.7rem);
}

.final-cta p {
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.86);
}

.final-cta .btn-ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.4rem 0 2rem;
  background: #faf9f5;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .pricing-grid,
  .included-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .menu-toggle {
    display: inline-block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 0.35rem;
    padding: 0.9rem;
    opacity: 0;
    visibility: hidden;
    transform: scaleY(0.96);
    transform-origin: top;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
    pointer-events: auto;
  }

  .main-nav a {
    padding: 0.72rem 0.85rem;
    border-radius: 8px;
  }

  .main-nav a:hover {
    background: rgba(17, 17, 17, 0.05);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 1.35rem));
  }

  .section {
    padding: clamp(60px, 9vw, 82px) 0;
  }

  .header-inner {
    min-height: 72px;
  }

  .hero-copy h1 {
    font-size: clamp(1.95rem, 10vw, 2.7rem);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .pricing-card,
  .included-card,
  .proof-card,
  .faq-item,
  .hero-panel {
    padding: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
