:root {
  --canvas: #f2d7b6;
  --surface: #fff4dd;
  --ink: #0d1f1a;
  --ink-soft: #2b3f35;
  --accent: #c7f000;
  --stroke: rgba(13, 31, 26, 0.12);
  --shadow-soft: 0 12px 32px rgba(13, 31, 26, 0.08);
  --gradient: linear-gradient(120deg, #c7f000, #f2d7b6);
  --radius: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background: var(--canvas);
  color: var(--ink);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

.page-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(199, 240, 0, 0.18), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(13, 31, 26, 0.12), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255, 244, 221, 0.6), transparent 55%);
  z-index: -2;
}

.page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(13, 31, 26, 0.08) 1px, transparent 0);
  background-size: 70px 70px;
  opacity: 0.18;
}

h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
  letter-spacing: -0.3px;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.6rem, 4vw, 4.4rem);
  line-height: 1.05;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 0.4rem;
}

h3 {
  font-size: 1.3rem;
}

p {
  color: #1f332c;
}

.lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
}

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

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 108px 0;
  position: relative;
}

.section-header {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-header p {
  margin-top: 12px;
}

.accent-underline {
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}

.accent-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60%;
  height: 6px;
  border-radius: 999px;
  background: var(--gradient);
}

.site-header {
  position: sticky;
  top: 0;
  min-height: 72px;
  background: rgba(242, 215, 182, 0.9);
  border-bottom: 1px solid var(--stroke);
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 24px;
  gap: 20px;
  flex-wrap: nowrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  max-height: 40px;
  font-weight: 700;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 32px;
  max-height: 40px;
  border-radius: 0;
  overflow: visible;
  flex-shrink: 0;
  background: transparent;
  color: inherit;
  font-family: inherit;
}

.brand-mark.brand-logo {
  height: 32px;
  max-height: 32px;
}

.brand-logo img {
  display: block;
  width: auto;
  height: 24px;
  max-width: none;
  object-fit: contain;
  transform: none;
}

.brand-name {
  font-size: 1.15rem;
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
  color: var(--ink-soft);
  align-items: center;
}

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

.nav-links .nav-tool-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(199, 240, 0, 0.65);
  background: linear-gradient(135deg, rgba(199, 240, 0, 0.22), rgba(199, 240, 0, 0.1));
  color: var(--ink);
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 6px 14px rgba(13, 31, 26, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-links .nav-tool-pill:hover {
  color: var(--ink);
  transform: translateY(-1px);
  background: linear-gradient(135deg, rgba(199, 240, 0, 0.32), rgba(199, 240, 0, 0.14));
  box-shadow: 0 9px 18px rgba(13, 31, 26, 0.16);
}

.mobile-nav-cta {
  display: none;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  background: var(--surface);
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
  background: var(--accent);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.secondary-btn {
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(13, 31, 26, 0.18);
}

.pulse {
  position: relative;
}

.pulse::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  border: 1px solid rgba(13, 31, 26, 0.15);
  opacity: 0;
  animation: pulse 4s ease-in-out infinite;
}

.hero {
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: 60px;
}

.tagline {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: var(--ink);
  background: rgba(199, 240, 0, 0.35);
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.subheadline {
  font-size: 1.1rem;
  margin: 18px 0 30px;
}

.hero-trust-signal {
  margin: -6px 0 16px;
  font-size: 0.92rem;
  color: #3d3833;
  font-weight: 500;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-cta-row--primary {
  justify-content: flex-start;
}

.hero-cta-row--secondary {
  width: 100%;
  justify-content: center;
}

.hero-cta .btn {
  min-height: 52px;
  min-width: 268px;
  padding: 14px 24px;
  border-radius: 12px;
}

.hero-cta .secondary-btn {
  border: 2px solid #c5ff33;
  background: transparent;
  color: var(--ink);
}

.hero-cta .secondary-btn:hover {
  background: rgba(197, 255, 51, 0.1);
  color: var(--ink);
}

.trust-strip {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.trust-strip span {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(199, 240, 0, 0.5);
  background: rgba(199, 240, 0, 0.12);
}

.trust-strip .dot {
  display: none;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.visual-card {
  padding: 18px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-soft);
  width: 100%;
  max-width: 560px;
}

.visual-card svg {
  width: 100%;
  height: auto;
}

.visual-label {
  text-align: center;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.float {
  animation: float 6s ease-in-out infinite;
}

.hero-glow {
  position: absolute;
  top: 10%;
  right: -5%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(199, 240, 0, 0.35), transparent 70%);
  filter: blur(30px);
  z-index: -1;
}

.ticker {
  background: var(--surface);
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
  overflow: hidden;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 22s linear infinite;
}

.ticker-content {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 14px 0;
  font-weight: 600;
  color: var(--ink);
}

.ticker-content .dot {
  color: var(--accent);
  opacity: 0.8;
}

.grid-3,
.grid-4 {
  display: grid;
  gap: 24px;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  padding: 24px;
  border-radius: var(--radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
}

.glass {
  background: var(--surface);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-soft);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(13, 31, 26, 0.12);
  border-color: var(--accent);
}

.icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
  color: var(--ink);
}

.case-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.case-card {
  position: relative;
  background: rgba(16, 35, 27, 0.92);
  border: 1px solid rgba(242, 215, 182, 0.15);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.25);
  padding: 22px;
}

.case-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  width: 4px;
  height: 60px;
  background: var(--accent);
  border-radius: 999px;
}

.case-card:hover {
  border-color: rgba(199, 240, 0, 0.6);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.case-card h3 {
  font-size: 1.15rem;
}

.case-card .case-meta {
  color: rgba(242, 215, 182, 0.8);
}

.case-card .case-bullets {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 14px 0 8px;
  color: rgba(242, 215, 182, 0.85);
  font-size: 0.95rem;
}

.case-card .case-bullets li::before {
  content: "• ";
  color: var(--accent);
}

.case-footer {
  margin-top: 14px;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(242, 215, 182, 0.7);
}

.case-note {
  margin-top: 12px;
  font-weight: 600;
  color: var(--accent);
}

.case-cta {
  margin-top: 14px;
}

.case-card--offer {
  background: linear-gradient(140deg, rgba(199, 240, 0, 0.18), rgba(16, 35, 27, 0.92));
  border-color: rgba(199, 240, 0, 0.4);
}

.case-card--offer .badge {
  background: rgba(199, 240, 0, 0.25);
}

.case-card--process .tool-grid {
  margin-top: 12px;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 8px;
  margin: 10px 0 8px;
}

.tool-grid span {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(242, 215, 182, 0.2);
  color: rgba(242, 215, 182, 0.85);
  font-size: 0.8rem;
  text-align: center;
}

.case-meta {
  margin-top: 10px;
  font-size: 0.95rem;
}

.case-meta + .case-meta {
  margin-top: 8px;
}

.badge {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(199, 240, 0, 0.12);
  color: var(--accent);
  font-size: 0.8rem;
  margin-bottom: 14px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.muted {
  color: rgba(13, 31, 26, 0.55);
}

.results {
  list-style: none;
  margin-top: 16px;
  display: grid;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
}

.mini-visual {
  margin-top: 18px;
  display: flex;
  justify-content: flex-end;
}

.use-cases .card {
  font-weight: 600;
  color: var(--ink);
}

.link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.link-card .link-arrow {
  font-size: 1.2rem;
  color: var(--ink);
}

.product-spotlight {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

.profile-product-btn {
  background: linear-gradient(135deg, rgba(199, 240, 0, 0.95), rgba(224, 142, 79, 0.85));
  color: var(--ink);
  border: 1px solid rgba(199, 240, 0, 0.75);
  box-shadow: 0 10px 22px rgba(13, 31, 26, 0.18);
  font-weight: 700;
  white-space: nowrap;
}

.profile-product-btn:hover {
  color: var(--ink);
  filter: saturate(1.08);
}

.stats-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.stats-pill {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 244, 221, 0.8);
  font-weight: 600;
  font-size: 0.85rem;
}

.timeline {
  display: grid;
  gap: 30px;
}

.timeline-step {
  display: flex;
  gap: 20px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-soft);
}

.step-icon {
  font-size: 2rem;
}

.subtext {
  display: block;
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.value-callout {
  background: var(--ink);
  color: var(--canvas);
  position: relative;
  overflow: hidden;
}

.value-callout::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(199, 240, 0, 0.25), transparent 50%);
  opacity: 0.8;
  pointer-events: none;
}

.value-callout h2,
.value-callout li,
.value-callout p {
  color: var(--canvas);
}

.callout-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  align-items: center;
}

.callout-icon span {
  font-size: 3rem;
}

.checklist {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 20px;
  font-weight: 600;
}

.value-callout .callout-grid {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
  gap: 18px;
}

.value-callout .callout-icon {
  margin: 0 auto;
}

.value-callout .checklist {
  margin: 22px auto 0;
  max-width: 720px;
  text-align: left;
}

.value-callout .checklist li {
  text-align: left;
}

.checklist li::before {
  content: "✓ ";
  color: var(--accent);
}

.badge-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.tech .section-header {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.tech .badge-row {
  justify-content: center;
}

.pill {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(13, 31, 26, 0.08);
  border: 1px solid var(--stroke);
  font-weight: 600;
}

.comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.comparison-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-soft);
}

.comparison-card ul {
  color: var(--ink-soft);
}

.comparison-card.highlight {
  border-color: var(--accent);
  box-shadow: 0 18px 36px rgba(13, 31, 26, 0.12);
}

.comparison-card ul {
  list-style: none;
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.comparison-card ul li::before {
  content: "- ";
  color: var(--accent);
}

.comparison-card.muted {
  opacity: 0.9;
}

.pricing-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.pricing-card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 10px;
}

.pricing-card .btn {
  width: 100%;
  margin-top: 14px;
}

.pricing-tier {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  color: var(--ink);
}

.pricing-price {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
}

.pricing-tag {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.pricing-features {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 8px 0 4px;
  color: var(--ink-soft);
}

.pricing-features li::before {
  content: "✓ ";
  color: var(--accent);
}

.pricing-popular {
  border: 2px solid transparent;
  background: linear-gradient(var(--surface), var(--surface)) padding-box,
    var(--gradient) border-box;
  transform: translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 6px 10px;
  border-radius: 999px;
}

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

.faq-item {
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--stroke);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  color: var(--ink-soft);
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 520px;
  padding: 0 24px 20px;
}

.final-cta {
  background: var(--ink);
  text-align: center;
  color: var(--canvas);
}

.final-cta p {
  margin: 16px auto 28px;
  max-width: 700px;
  color: rgba(242, 215, 182, 0.8);
}

.final-cta .trust-strip {
  justify-content: center;
}

.founder-proof {
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(13, 31, 26, 0.85);
  border: 1px solid rgba(242, 215, 182, 0.2);
  color: rgba(242, 215, 182, 0.9);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.25);
}

.offer-highlight {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.offer-highlight .pricing-features {
  color: var(--ink);
}

.offer-highlight .pricing-features li::before {
  color: var(--ink);
}

.offer-highlight .case-note {
  color: var(--ink);
}

.offer-highlight .btn {
  background: var(--ink);
  color: var(--surface);
}

.pricing-note {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.guarantee {
  text-align: center;
}

.guarantee .lead {
  max-width: 720px;
  margin: 12px auto 0;
}

.guarantee .btn {
  margin-top: 18px;
}

.booking .calendly-embed {
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.booking iframe {
  width: 100%;
  min-height: 720px;
  border: none;
  border-radius: calc(var(--radius) - 6px);
  background: #fffaf0;
}

.embed-fallback {
  margin-top: 16px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.embed-fallback a {
  color: var(--ink);
  font-weight: 600;
}

.site-footer {
  padding: 70px 0 20px;
  border-top: 1px solid rgba(242, 215, 182, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  align-items: start;
}

.footer-links,
.footer-social {
  display: grid;
  gap: 12px;
  color: rgba(242, 215, 182, 0.7);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  color: rgba(242, 215, 182, 0.5);
  font-size: 0.9rem;
}

.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 14px 22px;
  background: var(--accent);
  color: var(--ink);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 20;
}

.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
}

.booking-note {
  margin-top: 10px;
  font-weight: 600;
  color: var(--ink);
}

.section-dark {
  background: var(--ink);
  color: var(--canvas);
}

.section-dark h2,
.section-dark h3,
.section-dark p,
.section-dark a {
  color: var(--canvas);
}

.section-dark a:hover {
  color: var(--accent);
}

.value-callout .container,
.final-cta .container {
  position: relative;
  z-index: 1;
}

.section-dark .trust-strip span {
  border-color: rgba(242, 215, 182, 0.4);
  background: rgba(242, 215, 182, 0.1);
  color: var(--canvas);
}

.section-dark .comparison-card {
  background: rgba(255, 244, 221, 0.08);
  border-color: rgba(242, 215, 182, 0.2);
}

.section-dark .secondary-btn {
  border-color: rgba(242, 215, 182, 0.6);
  color: var(--canvas);
}

.section-dark .primary-btn {
  background: var(--accent);
  color: var(--ink);
}

.section-dark .results li,
.section-dark .muted {
  color: rgba(242, 215, 182, 0.85);
}

.section-dark .badge {
  background: rgba(199, 240, 0, 0.2);
  color: var(--accent);
}

.section-dark .mini-visual svg {
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.35));
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    opacity: 0;
    transform: scale(0.98);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.02);
  }
  100% {
    opacity: 0;
    transform: scale(1.06);
  }
}

@media (max-width: 960px) {
  .site-header {
    min-height: 64px;
  }

  .header-inner {
    min-height: 64px;
    padding: 0 24px;
    justify-content: space-between;
    gap: 14px;
    position: relative;
  }

  .brand {
    gap: 8px;
    max-height: 32px;
  }

  .brand-mark.brand-logo {
    height: 28px;
    max-height: 28px;
  }

  .brand-logo img {
    height: 20px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-header > .container > .btn,
  .site-header .header-inner > .btn.primary-btn {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 10px;
    background: var(--surface);
    border: 1px solid var(--stroke);
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 14px 30px rgba(13, 31, 26, 0.14);
    z-index: 30;
  }

  .site-header.menu-open .nav-links {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 8px 2px;
  }

  .nav-links .nav-tool-pill {
    display: inline-flex;
    margin-left: 0;
    text-transform: none;
    font-size: 0.84rem;
    justify-content: center;
  }

  .mobile-nav-cta {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    margin-top: 6px;
    padding: 12px 14px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--ink);
    font-weight: 700;
  }

  .site-header .btn {
    padding: 12px 18px;
    font-size: 0.92rem;
  }

  .hero {
    padding-top: 100px;
  }

  .section {
    padding: 90px 0;
  }

  .hero-grid {
    gap: 38px;
  }

  .case-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 84px 0;
  }

  .ticker-content {
    gap: 16px;
    font-size: 0.92rem;
  }
}

@media (min-width: 961px) and (max-width: 1400px) {
  .nav-links .nav-tool-pill {
    margin-left: 0;
    padding: 7px 11px;
    font-size: 0.73rem;
  }
}

@media (min-width: 961px) and (max-width: 1240px) {
  .nav-links .nav-tool-pill {
    display: none;
  }
}

@media (max-width: 720px) {
  h1 {
    font-size: clamp(2.1rem, 7vw, 3rem);
  }

  h2 {
    font-size: clamp(1.7rem, 6vw, 2.4rem);
  }

  .hero-cta {
    align-items: stretch;
  }

  .hero-cta-row,
  .hero-cta-row--primary,
  .hero-cta-row--secondary {
    width: 100%;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .hero-cta .btn {
    width: 100%;
    min-width: 0;
  }

  .hero-copy {
    text-align: center;
  }

  .subheadline {
    font-size: 1.02rem;
    margin: 16px 0 24px;
  }

  .hero-grid {
    gap: 30px;
  }

  .callout-grid {
    grid-template-columns: 1fr;
  }

  .floating-cta {
    right: 16px;
    left: 16px;
    text-align: center;
  }

  .visual-card svg {
    width: 100%;
  }

  .section-header {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }

  .trust-strip {
    justify-content: center;
  }

  .stats-bar {
    justify-content: center;
  }

  .stats-pill {
    width: auto;
    text-align: center;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .badge-row {
    justify-content: center;
  }

  .comparison {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-popular {
    transform: none;
  }

  .pricing-badge {
    position: static;
    justify-self: start;
    margin-bottom: 4px;
  }

  .timeline-step {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .link-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .link-card .link-arrow {
    align-self: flex-end;
  }

  .product-spotlight {
    grid-template-columns: 1fr;
  }

  .profile-product-btn {
    width: 100%;
  }

  .tool-grid {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

  .faq-question {
    padding: 16px 18px;
    font-size: 0.95rem;
  }

  .faq-answer {
    padding: 0 18px;
    font-size: 0.95rem;
  }

  .faq-item.open .faq-answer {
    padding: 0 18px 16px;
  }

  .footer-grid {
    gap: 24px;
    text-align: center;
  }

  .footer-links,
  .footer-social {
    justify-items: center;
  }
}

@media (max-width: 540px) {
  .header-inner {
    flex-direction: row;
    align-items: center;
  }

  .nav-links {
    left: 0;
    right: 0;
    margin-top: 4px;
  }

  .header-inner .btn {
    width: 100%;
    justify-content: center;
    min-height: 46px;
  }

  .section {
    padding: 72px 0;
  }

  .container {
    width: min(1200px, 94vw);
  }

  .card,
  .pricing-card,
  .timeline-step {
    padding: 20px;
  }

  .ticker-content {
    font-size: 0.86rem;
  }

  .tool-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: clamp(1.85rem, 9vw, 2.35rem);
  }

  h2 {
    font-size: clamp(1.45rem, 7.2vw, 1.95rem);
  }

  .brand-mark {
    width: auto;
    height: 28px;
  }

  .brand-name {
    font-size: 1.02rem;
    line-height: 1;
  }

  .btn {
    padding: 12px 16px;
    font-size: 0.93rem;
  }

  .floating-cta {
    bottom: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}
