:root {
  --c-primary: #0f2f2a;
  --c-secondary: #1d4f45;
  --c-bg: #f5efe3;
  --c-accent: #c9a44b;
  --c-ink: #101918;
  --c-white: #fffaf0;
  --radius: 12px;
  --shadow: 0 16px 38px rgba(7, 22, 18, 0.14);
  --bg-1: image-set(
    url("../assets/backgrounds/base/background1.webp") type("image/webp"),
    url("../assets/backgrounds/base/background1.png") type("image/png")
  );
  --bg-2: image-set(
    url("../assets/backgrounds/base/background2.webp") type("image/webp"),
    url("../assets/backgrounds/base/background2.png") type("image/png")
  );
  --bg-3: image-set(
    url("../assets/backgrounds/base/background3.webp") type("image/webp"),
    url("../assets/backgrounds/base/background3.png") type("image/png")
  );
  --bg-sapien-signal: image-set(
    url("../assets/backgrounds/premium/sapien-premium-signal.webp") type("image/webp"),
    url("../assets/backgrounds/premium/sapien-premium-signal.png") type("image/png")
  );
  --bg-sapien-light: image-set(
    url("../assets/backgrounds/premium/sapien-premium-light.webp") type("image/webp"),
    url("../assets/backgrounds/premium/sapien-premium-light.png") type("image/png")
  );
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  font-family: "Public Sans", sans-serif;
  color: var(--c-ink);
  background:
    radial-gradient(circle at 8% 14%, rgba(201, 164, 75, 0.28), transparent 38%),
    radial-gradient(circle at 88% 8%, rgba(22, 56, 49, 0.2), transparent 32%),
    linear-gradient(160deg, rgba(250, 246, 236, 0.95), rgba(249, 243, 231, 0.99)),
    var(--bg-3) center top / cover no-repeat;
  line-height: 1.6;
  position: relative;
  -webkit-tap-highlight-color: rgba(125, 174, 162, 0.24);
}

body::before {
  content: "";
  position: fixed;
  inset: -20% -10%;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 24%, rgba(201, 164, 75, 0.24), transparent 34%),
    radial-gradient(circle at 78% 20%, rgba(56, 91, 82, 0.18), transparent 32%),
    radial-gradient(circle at 52% 78%, rgba(87, 119, 108, 0.2), transparent 36%);
  z-index: -1;
  animation: driftGlow 36s ease-in-out infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    radial-gradient(rgba(16, 25, 24, 0.08) 0.7px, transparent 0.7px),
    linear-gradient(135deg, rgba(255, 253, 248, 0.22), rgba(255, 253, 248, 0.04));
  background-size: 20px 20px, cover;
  mix-blend-mode: multiply;
  opacity: 0.14;
}

h1,
h2,
h3 {
  font-family: "Manrope", sans-serif;
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0 0 1rem;
}

.container {
  width: min(1200px, 100% - 2rem);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 0.75rem;
  top: 0.75rem;
  z-index: 1200;
  padding: 0.65rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(15, 47, 42, 0.28);
  background: #f5efe3;
  color: #101918;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(249, 243, 231, 0.84);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(22, 56, 49, 0.2);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--c-primary);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.01em;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 12px;
}

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

.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--c-ink);
  text-decoration: none;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.nav-mini-contact {
  font-size: 0.9rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(56, 91, 82, 0.3);
  background: rgba(255, 253, 248, 0.65);
}

.nav a:hover {
  color: var(--c-primary);
  background: rgba(22, 56, 49, 0.09);
}

.nav-toggle {
  display: none;
  min-height: 44px;
  min-width: 44px;
  padding: 0.5rem 0.7rem;
}

a,
button,
input,
select,
textarea,
.btn,
.nav a,
.nav-toggle,
.mobile-sticky-cta {
  touch-action: manipulation;
}

main [id] {
  scroll-margin-top: 104px;
}

.hero {
  position: relative;
  padding: 5.5rem 0 4.5rem;
  overflow: clip;
  background:
    linear-gradient(140deg, rgba(255, 253, 248, 0.7), rgba(249, 243, 231, 0.66)),
    var(--bg-1) center center / cover no-repeat;
  border-bottom: 1px solid rgba(56, 91, 82, 0.18);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100px;
  background: linear-gradient(180deg, transparent, rgba(245, 239, 227, 0.78));
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      115deg,
      rgba(255, 253, 248, 0.07) 0,
      rgba(255, 253, 248, 0.07) 2px,
      transparent 2px,
      transparent 20px
    );
  opacity: 0.22;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.hero > .container,
.hero-grid {
  position: relative;
  z-index: 2;
}

.hero-bg-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  animation: floatBlob 20s ease-in-out infinite;
}

.hero-bg-one {
  width: 420px;
  height: 420px;
  right: -140px;
  top: -120px;
  background: radial-gradient(circle at center, rgba(56, 91, 82, 0.34), transparent 70%);
}

.hero-bg-two {
  width: 340px;
  height: 340px;
  left: -100px;
  bottom: -120px;
  background: radial-gradient(circle at center, rgba(201, 164, 75, 0.42), transparent 70%);
  animation-delay: 2.6s;
}

.hero-bg-three {
  width: 260px;
  height: 260px;
  left: 42%;
  top: -120px;
  background: radial-gradient(circle at center, rgba(87, 119, 108, 0.32), transparent 70%);
  animation-delay: 5.2s;
}

.eyebrow {
  display: inline-block;
  background: linear-gradient(90deg, #d7b66a, #c9a44b);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.hero-proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.hero-proof-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(22, 56, 49, 0.18);
  background: rgba(255, 253, 248, 0.76);
  box-shadow: 0 10px 20px rgba(16, 25, 24, 0.08);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-phone-pill {
  display: inline-flex;
  margin-top: 0.9rem;
  text-decoration: none;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  color: var(--c-primary);
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid rgba(56, 91, 82, 0.35);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
}

.mockup {
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid rgba(56, 91, 82, 0.32);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(16, 25, 24, 0.18);
  overflow: hidden;
  transform: rotate(-1deg);
}

.premium-mockup {
  box-shadow:
    0 28px 60px rgba(16, 25, 24, 0.18),
    0 0 0 1px rgba(255, 253, 248, 0.45);
}

.mockup-bar {
  height: 38px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-secondary));
}

.mockup-content {
  padding: 1.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.offer-block {
  min-height: 84px;
  background: #f6eee1;
  border-radius: 10px;
  border: 1px solid rgba(56, 91, 82, 0.14);
  padding: 0.9rem;
}

.offer-block.wide {
  grid-column: span 2;
  min-height: 106px;
}

.offer-label {
  margin-bottom: 0.35rem;
  color: rgba(16, 25, 24, 0.72);
  font-size: 0.86rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.offer-value {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  line-height: 1.35;
}

.section {
  padding: 6.2rem 0;
  position: relative;
}

.quick-book {
  padding: 1rem 0 0.7rem;
}

.quick-book-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  border: 1px solid rgba(56, 91, 82, 0.28);
  background: rgba(255, 253, 248, 0.88);
  border-radius: 14px;
  padding: 0.75rem 0.9rem;
  box-shadow: 0 10px 22px rgba(16, 25, 24, 0.13);
}

.quick-book-text {
  margin: 0;
  font-weight: 600;
}

.quick-book-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.quick-book-btn {
  text-decoration: none;
  color: var(--c-primary);
  font-weight: 700;
  border: 1px solid rgba(56, 91, 82, 0.32);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  background: rgba(201, 164, 75, 0.26);
}

.quick-book-btn:hover {
  background: rgba(201, 164, 75, 0.42);
}

.section::before { content: none; }

.section.alt {
  background:
    linear-gradient(rgba(255, 253, 248, 0.72), rgba(255, 253, 248, 0.74)),
    var(--bg-2) center center / cover no-repeat;
}

.section-pattern {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.76), rgba(255, 253, 248, 0.78)),
    var(--bg-3) center center / cover no-repeat;
}

#services,
#pricing,
#contact {
  background-attachment: scroll;
}

#contact::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -80px;
  top: 18%;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(201, 164, 75, 0.2), rgba(201, 164, 75, 0.02) 62%, transparent 70%);
  pointer-events: none;
}

#services::after,
#pricing::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  left: -95px;
  bottom: 10%;
  border-radius: 40% 60% 65% 35% / 40% 35% 65% 60%;
  background:
    radial-gradient(circle at 40% 40%, rgba(56, 91, 82, 0.2), rgba(56, 91, 82, 0.03) 60%, transparent 70%);
  pointer-events: none;
}

.section-intro {
  max-width: 680px;
  margin-bottom: 2.2rem;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.chip {
  background: rgba(56, 91, 82, 0.12);
  border: 1px solid rgba(56, 91, 82, 0.25);
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-weight: 600;
}

.cards {
  display: grid;
  gap: 1rem;
}

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

.card {
  background: rgba(255, 253, 248, 0.78);
  border-radius: 8px;
  border: 1px solid rgba(22, 56, 49, 0.24);
  padding: 1.25rem;
  box-shadow: 0 14px 28px rgba(16, 25, 24, 0.14);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  backdrop-filter: blur(6px);
}

.card-premium {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(252, 244, 231, 0.84));
  box-shadow:
    0 18px 34px rgba(16, 25, 24, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 34px rgba(16, 25, 24, 0.2);
  border-color: rgba(22, 56, 49, 0.4);
}

.card-kicker {
  margin-bottom: 0.65rem;
  color: var(--c-primary);
  font-family: "Manrope", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 32px;
  padding: 0 0.55rem;
  margin-bottom: 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(56, 91, 82, 0.35);
  background: rgba(201, 164, 75, 0.35);
  color: var(--c-primary);
  font-family: "Manrope", sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 800;
}

.delay-1 {
  --reveal-delay: 0.03s;
}

.delay-2 {
  --reveal-delay: 0.04s;
}

.delay-3 {
  --reveal-delay: 0.05s;
}

.delay-4 {
  --reveal-delay: 0.06s;
}

.delay-5 {
  --reveal-delay: 0.07s;
}

.delay-6 {
  --reveal-delay: 0.11s;
}

.delay-7 {
  --reveal-delay: 0.12s;
}

.delay-8 {
  --reveal-delay: 0.14s;
}

.delay-9 {
  --reveal-delay: 0.15s;
}

.delay-10 {
  --reveal-delay: 0.19s;
}

.delay-11 {
  --reveal-delay: 0.23s;
}

.cta-card {
  background: linear-gradient(180deg, #fff9ef 0%, #f7efdf 100%);
}

.pricing-box {
  background: var(--c-white);
  border: 1px solid rgba(56, 91, 82, 0.24);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow);
  max-width: 560px;
  position: relative;
  overflow: hidden;
}

.pricing-box::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  right: -70px;
  top: -80px;
  background: radial-gradient(circle at center, rgba(201, 164, 75, 0.22), transparent 70%);
}

.pricing-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: start;
}

#pricing {
  background:
    linear-gradient(rgba(245, 239, 227, 0.74), rgba(245, 239, 227, 0.78)),
    var(--bg-1) center center / cover no-repeat;
}

.includes-box {
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(56, 91, 82, 0.25);
  border-radius: 8px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.includes-box::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.28), transparent 46%),
    radial-gradient(circle at 88% 18%, rgba(201, 164, 75, 0.14), transparent 28%);
}

.checklist {
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.checklist li::before {
  content: "✓";
  margin-right: 0.55rem;
  color: var(--c-primary);
  font-weight: 800;
}

.price {
  font-family: "Manrope", sans-serif;
  color: var(--c-primary);
  font-weight: 800;
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  margin-bottom: 0.2rem;
}

.old-price {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(16, 25, 24, 0.75);
  color: rgba(16, 25, 24, 0.62);
  margin-right: 0.45rem;
  font-weight: 700;
}

.muted {
  color: rgba(16, 25, 24, 0.75);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.timeline-item {
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid rgba(56, 91, 82, 0.28);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: 0 10px 24px rgba(16, 25, 24, 0.14);
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.timeline-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(16, 25, 24, 0.2);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.process-step {
  position: relative;
  min-height: 100%;
}

.process-step::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 253, 248, 0.45);
}

.timeline-day {
  margin-bottom: 0.5rem;
  color: var(--c-primary);
  font-weight: 800;
  font-family: "Manrope", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
}

.requirements-box {
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(56, 91, 82, 0.28);
  border-radius: 8px;
  padding: 1.2rem 1.3rem;
  box-shadow: 0 10px 24px rgba(16, 25, 24, 0.14);
}

.requirements-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.62rem;
}

.requirements-list li::before {
  content: "•";
  color: var(--c-primary);
  font-weight: 900;
  margin-right: 0.55rem;
}

.requirements-list.compact {
  margin-top: 0.7rem;
  gap: 0.45rem;
}

.mini-title {
  margin-top: 1rem;
  margin-bottom: 0.2rem;
}

.faq-stack {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(56, 91, 82, 0.28);
  border-radius: 8px;
  padding: 1.1rem 1.15rem;
  box-shadow: 0 10px 22px rgba(16, 25, 24, 0.12);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(16, 25, 24, 0.16);
  border-color: rgba(22, 56, 49, 0.35);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  position: relative;
  padding-right: 1.4rem;
  transition: color 0.25s ease;
}

.faq-item summary:hover {
  color: var(--c-primary);
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-weight: 800;
  color: var(--c-primary);
  transition: transform 0.28s ease;
}

.faq-item[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-item p {
  margin: 0.65rem 0 0;
  transform-origin: top;
}

.faq-item[open] p,
.faq-item.just-opened p {
  animation: faqReveal 0.34s ease both;
}

.cta-strip .cta-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.cta-strip {
  background:
    linear-gradient(rgba(255, 253, 248, 0.76), rgba(255, 253, 248, 0.8)),
    var(--bg-2) center center / cover no-repeat;
}

.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(201, 164, 75, 0.16), transparent 30%, transparent 70%, rgba(56, 91, 82, 0.12));
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 0.65rem;
  background: var(--c-white);
  border: 1px solid rgba(56, 91, 82, 0.2);
  border-radius: var(--radius);
  padding: 1.2rem;
}

.contact-form:focus-within,
.faq-item:focus-within {
  box-shadow:
    0 0 0 2px rgba(125, 174, 162, 0.34),
    0 16px 36px rgba(7, 22, 18, 0.1);
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.direct-contact {
  display: grid;
  gap: 0.8rem;
}

.contact-card {
  display: block;
  text-decoration: none;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(56, 91, 82, 0.3);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  color: var(--c-ink);
  box-shadow: 0 10px 24px rgba(16, 25, 24, 0.14);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 91, 82, 0.5);
  box-shadow: 0 14px 28px rgba(16, 25, 24, 0.2);
}

.contact-card h3 {
  margin-bottom: 0.35rem;
}

.contact-card p {
  margin: 0;
}

.note-line {
  display: inline-block;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px dashed rgba(56, 91, 82, 0.45);
  background: rgba(255, 253, 248, 0.7);
  font-weight: 600;
}

.direct-contact .btn {
  margin-top: 0.2rem;
}

label {
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(56, 91, 82, 0.28);
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  font: inherit;
  font-size: 1rem;
  background: #fffbf4;
  color: var(--c-ink);
}

select {
  background-color: #fffbf4;
  color: var(--c-ink);
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(201, 164, 75, 0.8);
  border-color: var(--c-primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  text-decoration: none;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(1px) scale(0.99);
}

.btn-primary {
  background: linear-gradient(135deg, var(--c-primary), var(--c-secondary));
  color: #fff;
  gap: 0.4rem;
  box-shadow: 0 12px 24px rgba(22, 56, 49, 0.32);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -140%;
  width: 120%;
  height: 100%;
  background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.26) 45%, transparent 70%);
  transition: left 0.55s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #173a33, #2e6d5e);
  box-shadow: 0 16px 28px rgba(22, 56, 49, 0.38);
}

.btn-primary:hover::before {
  left: 130%;
}

.cta-inline {
  margin-top: 1.2rem;
}

.cta-band {
  margin-top: 1.8rem;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border: 1px solid rgba(22, 56, 49, 0.35);
  border-radius: 8px;
  padding: 1.1rem 1.2rem;
  background:
    radial-gradient(circle at 14% 20%, rgba(201, 164, 75, 0.36), transparent 40%),
    linear-gradient(120deg, rgba(255, 251, 243, 0.93), rgba(255, 244, 225, 0.94));
  box-shadow: 0 16px 32px rgba(16, 25, 24, 0.16);
}

.cta-band h3 {
  margin-bottom: 0.25rem;
}

.cta-band p {
  margin: 0;
}

.btn-secondary {
  color: var(--c-primary);
  border-color: var(--c-primary);
  background: transparent;
}

.btn-secondary:hover {
  background: rgba(56, 91, 82, 0.08);
}

.btn-nav {
  background: var(--c-accent);
  color: var(--c-ink);
}

.site-footer {
  padding: 1.2rem 0;
  border-top: 1px solid rgba(56, 91, 82, 0.2);
  background:
    linear-gradient(rgba(87, 119, 108, 0.3), rgba(87, 119, 108, 0.3)),
    var(--bg-3) center bottom / cover no-repeat;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.reveal {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  transition: opacity 0.46s ease, transform 0.46s ease;
  transition-delay: var(--reveal-delay, 0s);
}

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

.scroll-reveal {
  opacity: 0.001;
  transform: translateY(24px);
  transition: opacity 0.62s ease, transform 0.62s ease;
  will-change: opacity, transform;
}

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

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

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: rgba(56, 91, 82, 0.9);
  color: #fff;
  box-shadow: 0 8px 20px rgba(16, 25, 24, 0.25);
  z-index: 1000;
}

@media (max-width: 980px) {
  .hero-grid,
  .contact-grid,
  .cards-3 {
    grid-template-columns: 1fr 1fr;
  }

  .timeline,
  .pricing-wrap,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .quick-book-wrap {
    align-items: flex-start;
  }

  #services,
  #pricing,
  #contact {
    background-attachment: scroll;
  }

  #contact::after,
  #services::after,
  #pricing::after {
    width: 170px;
    height: 170px;
    opacity: 0.7;
  }

  .cards-3 .cta-card {
    grid-column: span 2;
  }

  .cta-strip .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

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

  .scroll-reveal,
  .scroll-reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 760px) {
  input,
  textarea,
  select {
    font-size: 16px;
  }

  html,
  body {
    overflow-x: hidden;
  }

  .brand span {
    font-size: 1.08rem;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 1px solid rgba(56, 91, 82, 0.35);
    background: var(--c-white);
    color: var(--c-ink);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    font-weight: 700;
  }

  .nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    gap: 1rem;
    background: var(--c-bg);
    border-bottom: 1px solid rgba(56, 91, 82, 0.2);
  }

  .nav.is-open {
    display: flex;
  }

  .hero-grid,
  .contact-grid,
  .cards-3 {
    grid-template-columns: 1fr;
  }

  .hero-cta .btn,
  .direct-contact .btn,
  .pricing-box .btn,
  .cta-inner .btn {
    width: 100%;
  }

  .hero-proof-strip {
    gap: 0.55rem;
  }

  .hero-proof-strip span {
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding: 4.5rem 0 3.5rem;
  }

  .hero p,
  .section p {
    overflow-wrap: anywhere;
  }

  .btn {
    min-height: 44px;
  }

  .quick-book-actions {
    width: 100%;
    flex-direction: column;
  }

  .quick-book-btn {
    width: 100%;
    text-align: center;
  }

  .contact-card {
    padding: 1rem;
  }

  .cards-3 .cta-card {
    grid-column: auto;
  }

  .section {
    padding: 4.4rem 0;
  }

  body::before {
    animation-duration: 24s;
  }

  body::after {
    background-size: 16px 16px, cover;
    opacity: 0.22;
  }

  .footer-wrap {
    flex-direction: column;
    gap: 0.45rem;
    align-items: flex-start;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 0.8rem;
    right: 0.8rem;
    bottom: max(0.8rem, env(safe-area-inset-bottom));
    min-height: 44px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    background: var(--c-primary);
    color: #fff;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(16, 25, 24, 0.26);
    z-index: 1000;
  }

  .back-to-top {
    width: 38px;
    height: 38px;
    right: 0.75rem;
    bottom: 5.4rem;
  }

  body.has-mobile-cta {
    padding-bottom: 4.8rem;
  }

  #contact::after,
  #services::after,
  #pricing::after {
    display: none;
  }
}

@keyframes floatBlob {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(12px, -10px, 0) scale(1.06);
  }
  100% {
    transform: translate3d(-8px, 8px, 0) scale(0.98);
  }
}

@keyframes driftGlow {
  0% {
    transform: translate3d(-1%, 0, 0) scale(1);
    opacity: 0.95;
  }
  100% {
    transform: translate3d(1%, -1%, 0) scale(1.04);
    opacity: 1;
  }
}

@keyframes faqReveal {
  0% {
    opacity: 0;
    transform: translateY(-6px) scaleY(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}

.home-page {
  --home-ink: #101918;
  --home-forest: #0f2f2a;
  --home-green: #2f7f6b;
  --home-cyan: #7daea2;
  --home-gold: #c9a44b;
  --home-coral: #f0715f;
  --home-paper: #f5efe3;
  --home-line: rgba(18, 58, 52, 0.18);
  color: var(--home-ink);
  background:
    linear-gradient(118deg, rgba(247, 250, 242, 0.98) 0%, rgba(239, 248, 238, 0.98) 45%, rgba(250, 246, 232, 0.96) 100%),
    var(--bg-sapien-light) center top / cover fixed no-repeat;
}

.home-page::before {
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(15, 47, 42, 0.045) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(0deg, rgba(15, 47, 42, 0.035) 0 1px, transparent 1px 96px);
  opacity: 1;
  animation: none;
}

.home-page::after {
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(47, 127, 107, 0.1) 48% 48.35%, transparent 48.35% 100%),
    linear-gradient(45deg, transparent 0 58%, rgba(125, 174, 162, 0.08) 58% 58.3%, transparent 58.3% 100%);
  background-size: 360px 360px, 420px 420px;
  mix-blend-mode: normal;
  opacity: 0.7;
}

.home-page .site-header {
  background: rgba(247, 250, 242, 0.82);
  border-bottom: 1px solid rgba(15, 47, 42, 0.14);
  box-shadow: 0 12px 28px rgba(7, 22, 18, 0.07);
}

.home-page .brand {
  color: var(--home-forest);
}

.home-page .brand-logo {
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(15, 47, 42, 0.12);
}

.home-page .nav a {
  color: rgba(7, 22, 18, 0.78);
  border-radius: 8px;
}

.home-page .nav a:hover {
  color: var(--home-forest);
  background: rgba(47, 127, 107, 0.14);
}

.home-page .nav a:last-child {
  color: #fff;
  background: var(--home-forest);
  box-shadow: 0 10px 20px rgba(15, 47, 42, 0.18);
}

.home-page .nav a:last-child:hover {
  color: #fff;
  background: #1d4f45;
}

.home-page .nav-toggle {
  border-radius: 8px;
}

.home-hero {
  min-height: 560px;
  min-height: min(620px, calc(100svh - 150px));
  padding: clamp(3rem, 5vw, 4.6rem) 0 clamp(2.5rem, 4vw, 3.8rem);
  color: #f5efe3;
  background:
    linear-gradient(118deg, rgba(5, 18, 15, 0.86) 0%, rgba(11, 42, 34, 0.76) 50%, rgba(23, 52, 49, 0.7) 100%),
    var(--bg-sapien-signal) center center / cover no-repeat;
  border-bottom: 0;
}

.home-hero::before {
  background:
    linear-gradient(90deg, rgba(125, 174, 162, 0.13) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(244, 199, 102, 0.08) 0 1px, transparent 1px 100%);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, #000, transparent 88%);
  opacity: 0.62;
}

.home-hero::after {
  height: 72px;
  background: linear-gradient(180deg, rgba(247, 250, 242, 0), rgba(247, 250, 242, 0.88));
}

.hero-signal-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.78;
  z-index: 1;
}

.home-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(1.6rem, 5vw, 4.8rem);
  align-items: center;
}

.home-page .hero-copy {
  max-width: 720px;
  position: relative;
  z-index: 3;
}

.home-page .eyebrow {
  color: #11362d;
  background: linear-gradient(90deg, rgba(125, 174, 162, 0.88), rgba(244, 199, 102, 0.95));
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.home-hero h1 {
  max-width: 640px;
  margin-top: 1rem;
  font-size: clamp(2.8rem, 5vw, 4.45rem);
  line-height: 1;
  color: #fffaf0;
  text-wrap: balance;
}

.hero-lede {
  max-width: 650px;
  color: rgba(247, 250, 242, 0.82);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.home-page .btn {
  border-radius: 8px;
  min-height: 46px;
}

.home-page .btn-primary {
  color: #061410;
  background: linear-gradient(135deg, var(--home-green), var(--home-gold));
  box-shadow: 0 18px 34px rgba(47, 127, 107, 0.25);
}

.home-page .btn-primary:hover {
  color: #061410;
  background: linear-gradient(135deg, #3e9a81, #d6b064);
  box-shadow: 0 20px 38px rgba(47, 127, 107, 0.32);
}

.home-page .btn-secondary {
  color: #f5efe3;
  border-color: rgba(247, 250, 242, 0.34);
  background: rgba(247, 250, 242, 0.08);
  backdrop-filter: blur(12px);
}

.home-page .btn-secondary:hover {
  color: #fff;
  background: rgba(247, 250, 242, 0.14);
}

.home-page .hero-proof-strip {
  gap: 0.6rem;
}

.home-page .hero-proof-strip span {
  color: rgba(247, 250, 242, 0.9);
  background: rgba(247, 250, 242, 0.14);
  border-color: rgba(247, 250, 242, 0.22);
  border-radius: 8px;
  box-shadow: none;
  backdrop-filter: blur(6px);
}

.home-command {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(247, 250, 242, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(247, 250, 242, 0.14), rgba(247, 250, 242, 0.06)),
    rgba(4, 16, 13, 0.68);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transform-style: preserve-3d;
  transition: transform 0.26s ease, box-shadow 0.26s ease;
  will-change: transform;
}

.home-command.reveal {
  transform: translateY(22px) scale(0.985);
}

.home-command.reveal.is-visible {
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
}

.command-topline,
.browser-toolbar,
.command-metrics {
  display: flex;
  align-items: center;
}

.command-topline {
  justify-content: space-between;
  gap: 0.8rem;
  color: rgba(247, 250, 242, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
}

.command-topline strong {
  color: var(--home-gold);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--home-green);
  box-shadow: 0 0 0 8px rgba(47, 127, 107, 0.14);
  animation: signalPulse 1.9s ease-in-out infinite;
}

.browser-shell {
  overflow: hidden;
  border: 1px solid rgba(247, 250, 242, 0.16);
  border-radius: 8px;
  background: #f8fbf4;
  color: var(--home-ink);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.22);
  transform: translateZ(28px);
}

.browser-toolbar {
  gap: 0.4rem;
  min-height: 38px;
  padding: 0 0.8rem;
  background: #10251f;
}

.browser-toolbar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--home-coral);
}

.browser-toolbar span:nth-child(2) {
  background: var(--home-gold);
}

.browser-toolbar span:nth-child(3) {
  background: var(--home-green);
}

.browser-toolbar p {
  margin: 0 0 0 0.45rem;
  color: rgba(247, 250, 242, 0.62);
  font-size: 0.78rem;
  font-weight: 700;
}

.site-preview {
  padding: 1rem;
  background:
    linear-gradient(120deg, rgba(47, 127, 107, 0.11), transparent 45%),
    #f8fbf4;
}

.preview-nav,
.preview-pill,
.preview-title,
.preview-line,
.preview-cards span,
.preview-panel span {
  display: block;
  border-radius: 8px;
}

.preview-nav {
  width: 42%;
  height: 10px;
  margin-bottom: 1.2rem;
  background: #17342d;
}

.preview-hero {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 1rem;
  align-items: stretch;
}

.preview-pill {
  width: 120px;
  height: 20px;
  margin-bottom: 0.7rem;
  background: rgba(244, 199, 102, 0.95);
}

.preview-title {
  width: 92%;
  height: 62px;
  margin-bottom: 0.8rem;
  background: linear-gradient(90deg, #10251f, #2a6c5c);
}

.preview-line {
  width: 86%;
  height: 12px;
  margin-bottom: 0.45rem;
  background: rgba(16, 37, 31, 0.18);
}

.preview-line.short {
  width: 58%;
}

.preview-panel {
  display: grid;
  gap: 0.55rem;
  padding: 0.8rem;
  background: #10251f;
  border-radius: 8px;
}

.preview-panel span {
  min-height: 36px;
  background: linear-gradient(90deg, rgba(125, 174, 162, 0.28), rgba(47, 127, 107, 0.2));
  animation: scanGlow 3.4s ease-in-out infinite;
}

.preview-panel span:nth-child(2) {
  animation-delay: 0.3s;
}

.preview-panel span:nth-child(3) {
  animation-delay: 0.6s;
}

.preview-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  margin-top: 1rem;
}

.preview-cards span {
  min-height: 68px;
  background: rgba(15, 47, 42, 0.1);
  border: 1px solid rgba(15, 47, 42, 0.12);
}

.command-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}

.command-metrics div {
  padding: 0.85rem;
  border: 1px solid rgba(247, 250, 242, 0.13);
  border-radius: 8px;
  background: rgba(247, 250, 242, 0.08);
}

.command-metrics span {
  display: block;
  margin-bottom: 0.2rem;
  color: rgba(247, 250, 242, 0.58);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.command-metrics strong {
  color: #fffaf0;
  font-family: "Manrope", sans-serif;
}

.home-ribbon {
  position: relative;
  z-index: 2;
  margin-top: -2.8rem;
}

.ribbon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(15, 47, 42, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 48px rgba(7, 22, 18, 0.12);
  backdrop-filter: blur(14px);
}

.ribbon-grid a {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  min-height: 72px;
  padding: 1rem;
  color: var(--home-ink);
  text-decoration: none;
  font-weight: 800;
  border-right: 1px solid rgba(15, 47, 42, 0.12);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.ribbon-grid a:last-child {
  border-right: 0;
}

.ribbon-grid a:hover {
  color: var(--home-forest);
  background: rgba(47, 127, 107, 0.11);
}

.ribbon-grid span {
  color: var(--home-coral);
  font-family: "Manrope", sans-serif;
  font-size: 0.86rem;
}

.home-section {
  overflow: clip;
}

.home-section h2,
.final-home-cta h2 {
  max-width: 12ch;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.98;
  color: var(--home-ink);
}

.home-section .section-intro,
.final-home-cta p {
  max-width: 650px;
  color: rgba(7, 22, 18, 0.68);
  font-size: 1.03rem;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.outcome-card,
.sequence-step,
.price-card {
  border: 1px solid var(--home-line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(250, 253, 246, 0.68));
  box-shadow: 0 16px 36px rgba(7, 22, 18, 0.08);
}

.outcome-card {
  min-height: 260px;
  padding: 1.25rem;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.outcome-card:hover {
  transform: translateY(-6px);
  border-color: rgba(47, 127, 107, 0.48);
  box-shadow: 0 22px 46px rgba(7, 22, 18, 0.12);
}

.home-page .card-kicker {
  color: #1d4f45;
  letter-spacing: 0.08em;
}

.home-system {
  color: #f5efe3;
  background:
    linear-gradient(115deg, rgba(7, 22, 18, 0.96), rgba(16, 55, 47, 0.94)),
    var(--bg-sapien-signal) center center / cover no-repeat;
}

.home-system h2,
.home-system .section-intro {
  color: #f5efe3;
}

.system-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 2rem;
  align-items: center;
}

.system-copy p:not(.eyebrow) {
  max-width: 600px;
  color: rgba(247, 250, 242, 0.76);
}

.text-link {
  display: inline-flex;
  color: var(--home-gold);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid rgba(244, 199, 102, 0.45);
}

.system-map {
  display: grid;
  gap: 0.65rem;
  position: relative;
}

.system-map::before {
  content: "";
  position: absolute;
  left: 1.1rem;
  top: 1rem;
  bottom: 1rem;
  width: 1px;
  background: linear-gradient(var(--home-green), var(--home-cyan), var(--home-gold));
}

.map-node {
  position: relative;
  display: grid;
  gap: 0.2rem;
  padding: 1rem 1rem 1rem 3rem;
  color: #f5efe3;
  text-decoration: none;
  border: 1px solid rgba(247, 250, 242, 0.12);
  border-radius: 8px;
  background: rgba(247, 250, 242, 0.07);
  transition: transform 0.22s ease, background-color 0.22s ease;
}

.map-node::before {
  content: "";
  position: absolute;
  left: 0.78rem;
  top: 1.28rem;
  width: 12px;
  height: 12px;
  border: 2px solid var(--home-green);
  border-radius: 50%;
  background: #10251f;
}

.map-node:hover,
.map-node.active {
  transform: translateX(8px);
  background: rgba(47, 127, 107, 0.12);
}

.map-node span {
  color: var(--home-cyan);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.map-node strong {
  font-family: "Manrope", sans-serif;
}

.launch-sequence {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
  counter-reset: sequence;
}

.sequence-step {
  position: relative;
  min-height: 245px;
  padding: 1.2rem;
  overflow: hidden;
}

.sequence-step::after {
  content: "";
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  height: 4px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--home-green), var(--home-cyan), var(--home-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s ease;
}

.sequence-step.is-visible::after {
  transform: scaleX(1);
}

.sequence-step span {
  display: inline-flex;
  margin-bottom: 2rem;
  color: var(--home-coral);
  font-family: "Manrope", sans-serif;
  font-size: 0.88rem;
  font-weight: 900;
}

.home-pricing {
  background:
    linear-gradient(180deg, rgba(238, 248, 240, 0.86), rgba(247, 250, 242, 0.96)),
    var(--bg-sapien-light) center center / cover no-repeat;
}

.home-decision {
  color: #f5efe3;
  background:
    linear-gradient(115deg, rgba(5, 18, 15, 0.9), rgba(15, 47, 42, 0.76)),
    var(--bg-sapien-signal) center center / cover no-repeat;
}

.decision-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(380px, 1fr);
  gap: clamp(1rem, 4vw, 2.6rem);
  align-items: center;
}

.decision-copy h2 {
  color: #fffaf0;
}

.decision-copy p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(247, 250, 242, 0.78);
}

.decision-board {
  display: grid;
  gap: 0.85rem;
  padding: 0.9rem;
  border: 1px solid rgba(247, 250, 242, 0.16);
  border-radius: 8px;
  background: rgba(247, 250, 242, 0.1);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
}

.decision-mini-grid,
.trust-strip,
.mini-sequence {
  display: grid;
  gap: 0.7rem;
}

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

.mini-sequence {
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  overflow: hidden;
}

.mini-sequence span {
  position: relative;
  display: inline-flex;
  justify-content: center;
  padding: 0.7rem 0.55rem;
  border: 1px solid rgba(247, 250, 242, 0.16);
  border-radius: 8px;
  background: rgba(7, 22, 18, 0.42);
  color: rgba(247, 250, 242, 0.9);
  font-size: 0.82rem;
  font-weight: 900;
}

.mini-sequence span::after {
  content: "";
  position: absolute;
  inset: auto 16% -1px 16%;
  height: 3px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--home-green), var(--home-gold));
  animation: sequencePulse 2.7s ease-in-out infinite;
}

.mini-sequence span:nth-child(2)::after {
  animation-delay: 0.2s;
}

.mini-sequence span:nth-child(3)::after {
  animation-delay: 0.4s;
}

.mini-sequence span:nth-child(4)::after {
  animation-delay: 0.6s;
}

.trust-strip {
  grid-template-columns: repeat(3, 1fr);
}

.trust-strip p {
  margin: 0;
  min-height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(247, 250, 242, 0.15);
  border-radius: 8px;
  background: rgba(247, 250, 242, 0.08);
  color: rgba(247, 250, 242, 0.88);
  text-align: center;
  font-size: 0.86rem;
  font-weight: 800;
}

@keyframes sequencePulse {
  0%,
  100% {
    transform: scaleX(0.35);
    opacity: 0.45;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

.pricing-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(360px, 1fr);
  gap: 2rem;
  align-items: center;
}

.pricing-ledger .btn {
  margin-top: 0.4rem;
}

.price-stack {
  display: grid;
  gap: 0.9rem;
}

.price-card {
  padding: 1.2rem;
}

.price-card span {
  display: block;
  margin-bottom: 0.35rem;
  color: #1d4f45;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
}

.price-card strong {
  display: block;
  color: var(--home-ink);
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 0.95;
}

.price-card p {
  margin: 0.65rem 0 0;
  color: rgba(7, 22, 18, 0.68);
}

.main-price {
  background:
    linear-gradient(135deg, rgba(47, 127, 107, 0.18), rgba(244, 199, 102, 0.16)),
    #fffef8;
}

.price-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.price-split .price-card strong {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.home-trust {
  background: #fbfcf7;
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 1fr);
  gap: 2rem;
  align-items: start;
}

.trust-copy p:not(.eyebrow) {
  max-width: 640px;
}

.trust-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.home-trust .btn-secondary {
  color: var(--home-forest);
  border-color: rgba(15, 47, 42, 0.28);
  background: transparent;
}

.home-trust .btn-secondary:hover {
  color: var(--home-forest);
  background: rgba(47, 127, 107, 0.12);
}

.trust-faq {
  margin-top: 0;
}

.home-page .faq-item {
  border-radius: 8px;
  border-color: rgba(15, 47, 42, 0.16);
  box-shadow: 0 14px 30px rgba(7, 22, 18, 0.08);
}

.final-home-cta {
  padding-top: 2rem;
  background:
    linear-gradient(115deg, rgba(6, 20, 16, 0.96), rgba(18, 72, 58, 0.93)),
    var(--bg-sapien-signal) center bottom / cover no-repeat;
}

.final-cta-panel {
  display: grid;
  justify-items: start;
  max-width: 950px;
  padding: clamp(1.5rem, 4vw, 2.6rem);
  border: 1px solid rgba(247, 250, 242, 0.16);
  border-radius: 8px;
  background: rgba(247, 250, 242, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.final-cta-panel h2 {
  max-width: 13ch;
  color: #fffaf0;
}

.final-cta-panel p:not(.eyebrow) {
  color: rgba(247, 250, 242, 0.78);
}

.home-page .site-footer {
  color: #f5efe3;
  border-top: 1px solid rgba(247, 250, 242, 0.14);
  background: #101918;
}

.home-page .footer-wrap a {
  color: var(--home-gold);
}

.home-page .mobile-sticky-cta {
  border-radius: 8px;
  background: linear-gradient(135deg, var(--home-green), var(--home-gold));
  color: #061410;
}

.site-page {
  --home-ink: #101918;
  --home-forest: #0f2f2a;
  --home-green: #2f7f6b;
  --home-cyan: #7daea2;
  --home-gold: #c9a44b;
  --home-coral: #f0715f;
  --home-line: rgba(18, 58, 52, 0.18);
  color: var(--home-ink);
  background:
    linear-gradient(120deg, rgba(247, 250, 242, 0.96), rgba(240, 248, 238, 0.94)),
    var(--bg-sapien-light) center top / cover fixed no-repeat;
}

.site-page::before {
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(15, 47, 42, 0.045) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(0deg, rgba(15, 47, 42, 0.035) 0 1px, transparent 1px 96px);
  animation: pageGridDrift 18s ease-in-out infinite alternate;
  opacity: 0.7;
}

.site-page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--cursor-x, 78%) var(--cursor-y, 18%), rgba(47, 127, 107, 0.16), transparent 28%),
    radial-gradient(circle at 10% 90%, rgba(244, 199, 102, 0.16), transparent 30%);
  opacity: 0.82;
}

.site-page .site-header {
  background: rgba(247, 250, 242, 0.86);
  border-bottom-color: rgba(15, 47, 42, 0.14);
  box-shadow: 0 12px 28px rgba(7, 22, 18, 0.07);
}

.site-page .brand {
  color: var(--home-forest);
}

.site-page .brand-logo {
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(15, 47, 42, 0.12);
}

.site-page .nav a {
  color: rgba(7, 22, 18, 0.78);
  border-radius: 8px;
}

.site-page .nav a:hover {
  color: var(--home-forest);
  background: rgba(47, 127, 107, 0.14);
}

.site-page .nav a:last-child {
  color: #fff;
  background: var(--home-forest);
  box-shadow: 0 10px 20px rgba(15, 47, 42, 0.18);
}

.site-page .hero {
  min-height: auto;
  padding: clamp(2.8rem, 5vw, 4.6rem) 0 clamp(2.2rem, 4vw, 3.2rem);
  color: #f5efe3;
  border-bottom: 0;
  background:
    linear-gradient(115deg, rgba(5, 18, 15, 0.86), rgba(15, 47, 42, 0.7)),
    var(--bg-sapien-signal) center center / cover no-repeat;
}

.site-page .hero::before {
  background:
    linear-gradient(90deg, rgba(125, 174, 162, 0.12) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(244, 199, 102, 0.08) 0 1px, transparent 1px 100%);
  background-size: 72px 72px;
  opacity: 0.64;
}

.site-page .hero::after {
  height: 64px;
  background: linear-gradient(180deg, rgba(247, 250, 242, 0), rgba(247, 250, 242, 0.9));
}

.site-page .hero > .container {
  position: relative;
  z-index: 1;
  animation: pageIntro 0.72s ease both;
}

.site-page .hero h1 {
  max-width: 960px;
  color: #fffaf0;
  font-size: clamp(2.3rem, 5vw, 4.7rem);
  line-height: 1;
}

.site-page .hero p:not(.eyebrow):not(.price):not(.note-line) {
  max-width: 780px;
  color: rgba(247, 250, 242, 0.82);
  font-size: 1.05rem;
}

.site-page .hero-cta {
  margin-top: 1rem;
}

.site-page .hero .btn-secondary {
  color: #f5efe3;
  border-color: rgba(247, 250, 242, 0.38);
  background: rgba(247, 250, 242, 0.1);
}

.site-page .eyebrow {
  color: #11362d;
  background: linear-gradient(90deg, rgba(125, 174, 162, 0.9), rgba(244, 199, 102, 0.96));
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.site-page .section {
  padding: clamp(2.2rem, 4vw, 3.8rem) 0;
}

.site-page .section.alt,
.site-page .section-pattern {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(247, 250, 242, 0.9)),
    var(--bg-sapien-light) center center / cover no-repeat;
}

.site-page .cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

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

.site-page .card,
.site-page .faq-item,
.site-page .contact-form,
.site-page .pricing-box,
.site-page .includes-box {
  border-color: rgba(15, 47, 42, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(250, 253, 246, 0.72));
  box-shadow: 0 16px 36px rgba(7, 22, 18, 0.08);
  backdrop-filter: blur(10px);
}

.site-page .card,
.site-page .faq-item {
  opacity: 0;
  transform: translateY(16px);
  animation: pageIntro 0.56s ease forwards;
  animation-delay: var(--stagger, 0s);
}

.site-page .card:nth-child(2),
.site-page .faq-item:nth-child(2) {
  --stagger: 0.05s;
}

.site-page .card:nth-child(3),
.site-page .faq-item:nth-child(3) {
  --stagger: 0.1s;
}

.site-page .card:nth-child(4),
.site-page .faq-item:nth-child(4) {
  --stagger: 0.15s;
}

.site-page .card:nth-child(5),
.site-page .faq-item:nth-child(5) {
  --stagger: 0.2s;
}

.site-page .card:nth-child(6),
.site-page .faq-item:nth-child(6) {
  --stagger: 0.25s;
}

.site-page .card:hover,
.site-page .faq-item:hover {
  transform: translateY(-5px);
  border-color: rgba(47, 127, 107, 0.48);
  box-shadow: 0 22px 46px rgba(7, 22, 18, 0.12);
}

.site-page .card-kicker,
.site-page .card-icon {
  color: #1d4f45;
}

.site-page .btn {
  border-radius: 8px;
}

.site-page .btn-primary {
  color: #061410;
  background: linear-gradient(135deg, var(--home-green), var(--home-gold));
  box-shadow: 0 18px 34px rgba(47, 127, 107, 0.22);
}

.site-page .btn-primary:hover {
  color: #061410;
  background: linear-gradient(135deg, #3e9a81, #d6b064);
}

.site-page .btn-secondary {
  color: #f5efe3;
  border-color: rgba(247, 250, 242, 0.34);
  background: rgba(247, 250, 242, 0.08);
}

.site-page .hero-proof-strip span,
.site-page .hero .note-line {
  border-radius: 8px;
  background: rgba(247, 250, 242, 0.11);
  border-color: rgba(247, 250, 242, 0.22);
  color: rgba(247, 250, 242, 0.92);
  box-shadow: none;
}

.site-page .price {
  color: var(--home-gold);
  font-variant-numeric: tabular-nums;
}

.price-card strong,
.command-metrics strong,
.command-metrics span {
  font-variant-numeric: tabular-nums;
}

.site-page .pricing-wrap,
.site-page .contact-grid {
  gap: 0.9rem;
}

.site-page .faq-stack {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.site-page .cta-band {
  padding-top: 1rem;
}

.site-page .cta-band-inner {
  background:
    linear-gradient(115deg, rgba(6, 20, 16, 0.92), rgba(18, 72, 58, 0.86)),
    var(--bg-sapien-signal) center center / cover no-repeat;
  color: #f5efe3;
}

.site-page .cta-band p {
  color: rgba(247, 250, 242, 0.78);
}

.site-page .site-footer {
  color: #f5efe3;
  border-top-color: rgba(247, 250, 242, 0.14);
  background: #101918;
}

.site-page .footer-wrap a {
  color: var(--home-gold);
}

/* Dark sleek pass: unify platform surfaces and fix decision-panel contrast. */
.home-page,
.site-page {
  --home-ink: #f5efe3;
  --home-forest: #08130f;
  --home-green: #2f7f6b;
  --home-cyan: #83b9ad;
  --home-gold: #c9a44b;
  --home-line: rgba(245, 239, 227, 0.16);
  color-scheme: dark;
  color: var(--home-ink);
  background:
    linear-gradient(155deg, rgba(4, 11, 9, 0.97), rgba(8, 22, 18, 0.96) 45%, rgba(11, 32, 27, 0.95)),
    var(--bg-sapien-signal) center top / cover fixed no-repeat;
}

.home-page::before,
.site-page::before {
  background:
    repeating-linear-gradient(90deg, rgba(245, 239, 227, 0.045) 0 1px, transparent 1px 108px),
    repeating-linear-gradient(0deg, rgba(245, 239, 227, 0.028) 0 1px, transparent 1px 108px);
  opacity: 0.62;
}

.home-page::after,
.site-page::after {
  background:
    radial-gradient(circle at var(--cursor-x, 78%) var(--cursor-y, 18%), rgba(47, 127, 107, 0.18), transparent 28%),
    radial-gradient(circle at 12% 88%, rgba(201, 164, 75, 0.2), transparent 30%);
  opacity: 0.86;
}

.home-page .site-header,
.site-page .site-header {
  background: rgba(6, 15, 13, 0.76);
  border-bottom: 1px solid rgba(245, 239, 227, 0.14);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
}

.home-page .brand,
.site-page .brand {
  color: #fffaf0;
}

.home-page .brand-logo,
.site-page .brand-logo {
  background: rgba(247, 250, 242, 0.12);
  border: 1px solid rgba(247, 250, 242, 0.2);
}

.home-page .nav a,
.site-page .nav a {
  color: rgba(245, 239, 227, 0.86);
}

.home-page .nav a:hover,
.site-page .nav a:hover {
  color: #fffaf0;
  background: rgba(247, 250, 242, 0.14);
}

.home-page .nav a:last-child,
.site-page .nav a:last-child {
  color: #061410;
  background: linear-gradient(135deg, var(--home-green), var(--home-gold));
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3);
}

.home-page .home-section h2,
.home-page .final-home-cta h2,
.home-page .section-intro,
.home-page .final-home-cta p {
  color: rgba(245, 239, 227, 0.92);
}

.home-page .home-pricing,
.home-page .home-trust,
.site-page .section,
.site-page .section.alt,
.site-page .section-pattern {
  background:
    linear-gradient(160deg, rgba(8, 20, 17, 0.84), rgba(11, 28, 24, 0.8)),
    var(--bg-sapien-light) center center / cover no-repeat;
}

.home-page .outcome-card,
.home-page .sequence-step,
.home-page .price-card,
.home-page .decision-board,
.home-page .trust-strip p,
.home-page .faq-item,
.home-page .home-command,
.site-page .card,
.site-page .faq-item,
.site-page .contact-form,
.site-page .pricing-box,
.site-page .includes-box,
.site-page .timeline-item,
.site-page .requirements-box,
.site-page .contact-card {
  border: 1px solid rgba(245, 239, 227, 0.18);
  background:
    linear-gradient(160deg, rgba(12, 28, 24, 0.9), rgba(8, 20, 17, 0.86));
  color: rgba(245, 239, 227, 0.9);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.32);
}

.home-page .outcome-card h3,
.home-page .outcome-card p,
.home-page .sequence-step p,
.home-page .price-card p,
.site-page .card h3,
.site-page .card p,
.site-page .faq-item p,
.site-page .timeline-item p,
.site-page .requirements-box p,
.site-page .requirements-list li,
.site-page .contact-form p,
.site-page .contact-card p,
.site-page .section-intro,
.site-page .muted,
.site-page label,
.site-page .card-kicker {
  color: rgba(245, 239, 227, 0.84);
}

.home-page .price-card span,
.home-page .card-kicker,
.site-page .card-icon,
.site-page .price,
.site-page .card-kicker {
  color: var(--home-gold);
}

.home-page .price-card strong,
.site-page .price-card strong,
.site-page .card h3,
.site-page .faq-item summary {
  color: #fffaf0;
}

.home-page .home-decision .price-card {
  border-color: rgba(245, 239, 227, 0.2);
  background:
    linear-gradient(150deg, rgba(15, 36, 31, 0.92), rgba(9, 22, 19, 0.88));
}

.home-page .home-decision .main-price {
  background:
    radial-gradient(circle at 14% 18%, rgba(201, 164, 75, 0.24), transparent 44%),
    linear-gradient(145deg, rgba(17, 40, 34, 0.94), rgba(9, 22, 19, 0.9));
}

.home-page .home-decision .mini-sequence span {
  border-color: rgba(245, 239, 227, 0.22);
  background: rgba(8, 19, 16, 0.72);
  color: #fffaf0;
}

.home-page .home-decision .trust-strip p {
  border-color: rgba(245, 239, 227, 0.22);
  background: rgba(13, 30, 26, 0.78);
  color: rgba(245, 239, 227, 0.95);
}

.site-page .btn-primary,
.home-page .btn-primary {
  color: #061410;
  background: linear-gradient(135deg, #3c9980, #d1ad5b);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.32);
}

.site-page .btn-primary:hover,
.home-page .btn-primary:hover {
  background: linear-gradient(135deg, #4aa88d, #dfbe71);
}

.site-page .btn-secondary,
.home-page .btn-secondary {
  color: rgba(245, 239, 227, 0.95);
  border-color: rgba(245, 239, 227, 0.34);
  background: rgba(247, 250, 242, 0.08);
}

.site-page input,
.site-page textarea,
.site-page select {
  color: #fffaf0;
  border-color: rgba(245, 239, 227, 0.22);
  background: rgba(5, 14, 12, 0.72);
}

.site-page input::placeholder,
.site-page textarea::placeholder {
  color: rgba(245, 239, 227, 0.52);
}

.site-page .site-footer,
.home-page .site-footer {
  background: #050e0c;
  color: rgba(245, 239, 227, 0.84);
  border-top: 1px solid rgba(245, 239, 227, 0.14);
}

.site-page .footer-wrap a,
.home-page .footer-wrap a {
  color: var(--home-gold);
}

/* Contact-page polish: remove milky overlays and keep dark surfaces crisp. */
.site-page .hero::after {
  height: 72px;
  background: linear-gradient(180deg, rgba(5, 14, 12, 0), rgba(5, 14, 12, 0.92));
}

.site-page .card,
.site-page .faq-item,
.site-page .contact-form,
.site-page .pricing-box,
.site-page .includes-box,
.site-page .timeline-item,
.site-page .requirements-box,
.site-page .contact-card {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.page-contact .section,
.page-contact .section.alt {
  background:
    linear-gradient(160deg, rgba(6, 16, 13, 0.9), rgba(9, 24, 20, 0.86)),
    var(--bg-sapien-light) center center / cover no-repeat;
}

.page-contact .card,
.page-contact .contact-form,
.page-contact .card-premium {
  background:
    linear-gradient(160deg, rgba(11, 26, 22, 0.95), rgba(8, 18, 15, 0.94));
  border-color: rgba(245, 239, 227, 0.22);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.34);
}

.page-contact .note-line {
  border-color: rgba(201, 164, 75, 0.54);
  background: rgba(201, 164, 75, 0.14);
  color: #fffaf0;
}

.page-contact .muted,
.page-contact .muted a {
  color: rgba(245, 239, 227, 0.86);
}

/* Background rollout: apply the new dark-rich-green assets consistently. */
.home-page .home-ribbon {
  margin-top: -2.8rem;
}

.home-page .ribbon-grid {
  border-color: rgba(245, 239, 227, 0.2);
  background:
    linear-gradient(160deg, rgba(11, 24, 20, 0.92), rgba(8, 19, 16, 0.88)),
    var(--bg-1) center center / cover no-repeat;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.34);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.home-page .ribbon-grid a {
  color: rgba(245, 239, 227, 0.92);
  border-right-color: rgba(245, 239, 227, 0.14);
}

.home-page .ribbon-grid a:hover {
  color: #fffaf0;
  background: rgba(47, 127, 107, 0.18);
}

.site-page main > .section:not(.hero):not(.cta-band) {
  background:
    linear-gradient(162deg, rgba(8, 20, 17, 0.9), rgba(11, 29, 24, 0.86)),
    var(--bg-sapien-light) center center / cover no-repeat;
}

.site-page main > .section:not(.hero):not(.cta-band):nth-of-type(even) {
  background:
    linear-gradient(162deg, rgba(7, 18, 15, 0.9), rgba(10, 26, 22, 0.86)),
    var(--bg-2) center center / cover no-repeat;
}

.site-page main > .section:not(.hero):not(.cta-band):nth-of-type(odd) {
  background:
    linear-gradient(162deg, rgba(8, 20, 17, 0.9), rgba(11, 29, 24, 0.86)),
    var(--bg-3) center center / cover no-repeat;
}

.site-page .cta-band-inner,
.home-page .final-home-cta {
  background:
    linear-gradient(115deg, rgba(6, 20, 16, 0.94), rgba(15, 47, 42, 0.9)),
    var(--bg-sapien-signal) center center / cover no-repeat;
}

.page-about .hero {
  background:
    linear-gradient(116deg, rgba(5, 18, 15, 0.9), rgba(14, 40, 34, 0.82)),
    var(--bg-1) center center / cover no-repeat;
}

.page-services .hero {
  background:
    linear-gradient(116deg, rgba(5, 18, 15, 0.9), rgba(14, 40, 34, 0.82)),
    var(--bg-2) center center / cover no-repeat;
}

.page-pricing .hero {
  background:
    linear-gradient(116deg, rgba(5, 18, 15, 0.9), rgba(14, 40, 34, 0.82)),
    var(--bg-3) center center / cover no-repeat;
}

.page-contact .hero {
  background:
    linear-gradient(116deg, rgba(5, 18, 15, 0.9), rgba(14, 40, 34, 0.82)),
    var(--bg-sapien-signal) center center / cover no-repeat;
}

.page-faq .hero {
  background:
    linear-gradient(116deg, rgba(5, 18, 15, 0.9), rgba(14, 40, 34, 0.82)),
    var(--bg-1) center center / cover no-repeat;
}

.page-launch-offer .hero {
  background:
    linear-gradient(116deg, rgba(5, 18, 15, 0.9), rgba(14, 40, 34, 0.82)),
    var(--bg-2) center center / cover no-repeat;
}

.page-legal .hero {
  background:
    linear-gradient(116deg, rgba(5, 18, 15, 0.9), rgba(14, 40, 34, 0.82)),
    var(--bg-3) center center / cover no-repeat;
}

.not-found-page .hero {
  background:
    linear-gradient(116deg, rgba(5, 18, 15, 0.9), rgba(14, 40, 34, 0.84)),
    var(--bg-sapien-signal) center center / cover no-repeat;
}

/* Final overlay cleanup: remove remaining white film and force rich dark surfaces. */
.home-page::before,
.site-page::before {
  opacity: 0.42;
}

.home-page::after,
.site-page::after {
  background:
    radial-gradient(circle at var(--cursor-x, 78%) var(--cursor-y, 18%), rgba(47, 127, 107, 0.16), transparent 30%),
    radial-gradient(circle at 12% 88%, rgba(201, 164, 75, 0.14), transparent 34%);
  mix-blend-mode: normal;
  opacity: 0.66;
}

.home-page .home-decision {
  background:
    linear-gradient(118deg, rgba(6, 18, 15, 0.95), rgba(10, 30, 25, 0.92)),
    var(--bg-sapien-signal) center center / cover no-repeat;
}

/* Force dark decision section: overrides legacy `#pricing` light gradient. */
.home-page #pricing.home-decision {
  background:
    linear-gradient(118deg, rgba(6, 18, 15, 0.96), rgba(9, 28, 23, 0.93)),
    var(--bg-sapien-signal) center center / cover no-repeat;
}

.home-page .decision-board {
  border-color: rgba(245, 239, 227, 0.24);
  background:
    linear-gradient(160deg, rgba(10, 24, 20, 0.94), rgba(7, 16, 14, 0.92)),
    var(--bg-2) center center / cover no-repeat;
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.38);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.home-page .home-decision .price-card {
  border-color: rgba(245, 239, 227, 0.24);
  background:
    linear-gradient(150deg, rgba(14, 34, 29, 0.94), rgba(8, 19, 16, 0.92));
}

.home-page .home-decision .main-price {
  background:
    radial-gradient(circle at 14% 18%, rgba(201, 164, 75, 0.18), transparent 42%),
    linear-gradient(145deg, rgba(15, 36, 31, 0.95), rgba(8, 20, 17, 0.92));
}

.home-page .home-decision .mini-sequence span,
.home-page .home-decision .trust-strip p {
  background: rgba(8, 19, 16, 0.88);
}

.home-page .browser-shell,
.home-page .site-preview,
.home-page .preview-panel,
.home-page .preview-nav,
.home-page .preview-title,
.home-page .preview-line {
  background-color: rgba(8, 20, 17, 0.94);
}

.home-page .browser-shell {
  border-color: rgba(245, 239, 227, 0.18);
  color: rgba(245, 239, 227, 0.9);
}

.home-page .preview-title {
  background: linear-gradient(90deg, rgba(12, 34, 28, 0.95), rgba(34, 95, 81, 0.9));
}

.home-page .hero-proof-strip span,
.home-page .hero-phone-pill,
.home-page .nav-mini-contact,
.site-page .hero-proof-strip span,
.site-page .hero .note-line {
  border-color: rgba(245, 239, 227, 0.24);
  background: rgba(8, 19, 16, 0.76);
  color: rgba(245, 239, 227, 0.94);
  box-shadow: none;
}

.site-page .card,
.site-page .faq-item,
.site-page .contact-form,
.site-page .pricing-box,
.site-page .includes-box,
.site-page .timeline-item,
.site-page .requirements-box,
.site-page .contact-card,
.site-page .not-found-panel {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-page .not-found-panel {
  border-color: rgba(245, 239, 227, 0.22);
  background:
    linear-gradient(160deg, rgba(11, 26, 22, 0.95), rgba(8, 18, 15, 0.92));
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.36);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.btn:focus-visible,
.faq-item summary:focus-visible,
.nav-toggle:focus-visible {
  outline: 2px solid var(--home-cyan);
  outline-offset: 3px;
}

.home-page .outcome-card,
.home-page .decision-board,
.site-page .card,
.site-page .faq-item,
.cta-band-inner,
.home-command,
.ribbon-grid,
.final-cta-panel {
  border-radius: 14px;
}

.page-contact .hero + .section,
.page-pricing .hero + .section,
.page-faq .hero + .section,
.page-launch-offer .hero + .section {
  padding-top: 1.4rem;
}

.page-legal .hero {
  padding-bottom: 2rem;
}

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

.not-found-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.not-found-page main {
  flex: 1;
  display: grid;
}

.not-found-hero {
  display: grid;
  align-items: center;
}

.not-found-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.55fr);
  gap: clamp(1rem, 4vw, 2rem);
  align-items: center;
}

.not-found-panel {
  display: grid;
  gap: 0.35rem;
  padding: 1.2rem;
  border: 1px solid rgba(247, 250, 242, 0.18);
  border-radius: 8px;
  background: rgba(247, 250, 242, 0.1);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
  animation: panelFloat 4s ease-in-out infinite;
}

.not-found-panel span {
  color: var(--home-gold);
  font-family: "Manrope", sans-serif;
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 900;
  line-height: 0.9;
}

.not-found-panel p,
.not-found-panel strong {
  margin: 0;
  color: rgba(247, 250, 242, 0.78);
}

.not-found-panel strong {
  color: #fffaf0;
  font-family: "Manrope", sans-serif;
}

@keyframes panelFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes pageIntro {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pageGridDrift {
  from {
    transform: translate3d(-0.8%, 0, 0);
  }
  to {
    transform: translate3d(0.8%, -0.8%, 0);
  }
}

@keyframes signalPulse {
  0%,
  100% {
    box-shadow: 0 0 0 6px rgba(47, 127, 107, 0.12);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(47, 127, 107, 0.04);
  }
}

@keyframes scanGlow {
  0%,
  100% {
    opacity: 0.62;
    transform: translateX(0);
  }
  50% {
    opacity: 1;
    transform: translateX(4px);
  }
}

@media (max-width: 1080px) {
  .home-hero-grid,
  .system-grid,
  .pricing-stage,
  .trust-grid,
  .decision-grid {
    grid-template-columns: 1fr;
  }

  .home-hero h1,
  .home-section h2,
  .final-home-cta h2 {
    max-width: 16ch;
  }

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

@media (max-width: 760px) {
  .home-page .nav {
    background: rgba(5, 14, 12, 0.96);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.34);
  }

  .site-page .nav {
    background: rgba(5, 14, 12, 0.96);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.34);
  }

  .site-page .nav a:last-child {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .site-page .hero {
    padding: 2.5rem 0 2.8rem;
  }

  .site-page .hero h1 {
    font-size: clamp(2.2rem, 11vw, 3.15rem);
  }

  .site-page .cards,
  .site-page .cards-3,
  .site-page .faq-stack,
  .page-legal .cards,
  .not-found-grid {
    grid-template-columns: 1fr;
  }

  .site-page .section {
    padding: 1.7rem 0;
  }

  .site-page .mobile-sticky-cta {
    display: none;
  }

  .site-page.has-mobile-cta {
    padding-bottom: 0;
  }

  .home-page .nav a:last-child {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .home-page .mobile-sticky-cta {
    display: none;
  }

  .home-page.has-mobile-cta {
    padding-bottom: 0;
  }

  .home-hero {
    min-height: auto;
    padding: 2.6rem 0 2.8rem;
  }

  .home-hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.1rem);
    line-height: 1.02;
  }

  .home-page .hero-lede {
    font-size: 1rem;
  }

  .home-page .hero-proof-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(134px, 1fr));
  }

  .home-page .hero-proof-strip span {
    width: auto;
    min-height: 48px;
    justify-content: center;
    padding: 0.55rem 0.45rem;
    text-align: center;
    font-size: 0.78rem;
  }

  .home-command {
    display: none;
  }

  .preview-hero,
  .command-metrics,
  .price-split,
  .split-heading,
  .launch-sequence,
  .ribbon-grid {
    grid-template-columns: 1fr;
  }

  .home-page .outcome-grid,
  .home-page .decision-mini-grid,
  .home-page .trust-strip,
  .home-page .mini-sequence,
  .page-about .cards-3,
  .page-services .cards-3,
  .page-pricing .cards-3,
  .page-launch-offer .cards-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ribbon-grid a {
    min-height: 58px;
    border-right: 0;
    border-bottom: 1px solid rgba(15, 47, 42, 0.12);
  }

  .ribbon-grid a:last-child {
    border-bottom: 0;
  }

  .home-section {
    padding: 3rem 0;
  }

  .home-section h2,
  .final-home-cta h2 {
    font-size: clamp(2.2rem, 12vw, 3.35rem);
  }

  .outcome-card,
  .sequence-step {
    min-height: auto;
  }

  .home-page .outcome-card,
  .site-page .card {
    padding: 0.95rem;
  }

  .home-page .outcome-card h3,
  .site-page .card h3 {
    font-size: 1rem;
  }

  .home-page .outcome-card p,
  .site-page .card p {
    font-size: 0.92rem;
    line-height: 1.45;
  }
}

@media (max-width: 560px) {
  .home-page .outcome-grid,
  .home-page .decision-mini-grid,
  .home-page .trust-strip,
  .home-page .mini-sequence,
  .page-about .cards-3,
  .page-services .cards-3,
  .page-pricing .cards-3,
  .page-launch-offer .cards-3 {
    grid-template-columns: 1fr;
  }
}

/* Homepage conversion and readability pass */
.home-page .hero-copy {
  max-width: 66ch;
}

.home-page .hero-lede,
.home-page .section-intro,
.home-page .decision-copy p,
.home-page .trust-copy p,
.home-page .final-cta-panel p {
  max-width: 62ch;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.62;
}

.home-page .home-section h2,
.home-page .final-home-cta h2 {
  margin-bottom: 0.55rem;
  letter-spacing: -0.01em;
}

.home-page .outcome-card h3 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
}

.home-page .outcome-flow strong {
  color: #fffaf0;
}

.home-inline-cta {
  padding: 1.4rem 0 1rem;
}

.inline-cta-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  border: 1px solid rgba(245, 239, 227, 0.22);
  border-radius: 14px;
  padding: 0.95rem 1.05rem;
  background: linear-gradient(150deg, rgba(12, 30, 25, 0.92), rgba(8, 19, 16, 0.9));
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.32);
}

.inline-cta-wrap p {
  margin: 0;
  font-weight: 600;
}

.home-page .home-section,
.home-page .final-home-cta {
  content-visibility: auto;
  contain-intrinsic-size: 840px;
}

/* Blend section boundaries so homepage backgrounds feel continuous. */
.home-page .home-ribbon,
.home-page .home-section,
.home-page .home-inline-cta,
.home-page .final-home-cta {
  position: relative;
  overflow: clip;
  isolation: isolate;
}

.home-page .home-ribbon::before,
.home-page .home-section::before,
.home-page .home-inline-cta::before,
.home-page .final-home-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(201, 164, 75, 0.08), transparent 42%),
    radial-gradient(circle at 82% 76%, rgba(47, 127, 107, 0.1), transparent 46%),
    repeating-linear-gradient(105deg, rgba(245, 239, 227, 0.03) 0 1px, transparent 1px 92px),
    repeating-linear-gradient(-12deg, rgba(245, 239, 227, 0.02) 0 1px, transparent 1px 120px);
}

.home-page .home-ribbon::after,
.home-page .home-section::after,
.home-page .home-inline-cta::after,
.home-page .final-home-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(6, 18, 15, 0.55), rgba(6, 18, 15, 0) 16%),
    linear-gradient(0deg, rgba(6, 18, 15, 0.6), rgba(6, 18, 15, 0) 18%);
}

.home-page .home-ribbon > *,
.home-page .home-section > *,
.home-page .home-inline-cta > *,
.home-page .final-home-cta > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 760px) {
  .home-page .hero-lede,
  .home-page .section-intro,
  .home-page .decision-copy p,
  .home-page .trust-copy p,
  .home-page .final-cta-panel p {
    font-size: 0.98rem;
    line-height: 1.52;
  }

  .home-inline-cta {
    padding-top: 1rem;
  }

  .inline-cta-wrap {
    padding: 0.9rem;
  }

  .inline-cta-wrap .btn {
    width: 100%;
    justify-content: center;
  }

  .home-page,
  .site-page {
    background-attachment: scroll;
  }

  .home-page .home-ribbon::before,
  .home-page .home-section::before,
  .home-page .home-inline-cta::before,
  .home-page .final-home-cta::before {
    opacity: 0.82;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-signal-canvas {
    opacity: 0.35;
  }

  .home-command,
  .home-command.reveal,
  .home-command.reveal.is-visible {
    transform: none !important;
  }

  .sequence-step::after {
    transform: scaleX(1);
  }

  .site-page::before,
  .site-page .card,
  .site-page .faq-item,
  .mini-sequence span::after {
    animation: none !important;
  }

  .site-page .card,
  .site-page .faq-item {
    opacity: 1;
    transform: none;
  }
}

/* Final dark-surface cleanup across all pages to remove residual milky layers. */
.home-page .hero::after,
.site-page .hero::after {
  background: linear-gradient(180deg, rgba(5, 14, 12, 0), rgba(5, 14, 12, 0.88));
}

.site-page .section,
.site-page .section.alt,
.site-page .section-pattern {
  background:
    linear-gradient(160deg, rgba(7, 18, 15, 0.9), rgba(10, 28, 23, 0.86)),
    var(--bg-sapien-light) center center / cover no-repeat;
}

.site-page .card,
.site-page .card-premium,
.site-page .faq-item,
.site-page .contact-form,
.site-page .pricing-box,
.site-page .includes-box,
.site-page .timeline-item,
.site-page .requirements-box,
.site-page .contact-card,
.home-page .decision-board,
.home-page .price-card,
.home-page .outcome-card {
  background:
    linear-gradient(160deg, rgba(11, 26, 22, 0.95), rgba(8, 18, 15, 0.92));
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* Continuity mesh on internal pages without covering content. */
.site-page main > .section {
  position: relative;
  isolation: isolate;
  overflow: clip;
}

.site-page main > .section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 16% 20%, rgba(201, 164, 75, 0.07), transparent 40%),
    radial-gradient(circle at 84% 74%, rgba(47, 127, 107, 0.09), transparent 44%),
    repeating-linear-gradient(102deg, rgba(245, 239, 227, 0.02) 0 1px, transparent 1px 116px);
}

.site-page main > .section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(6, 18, 15, 0.46), rgba(6, 18, 15, 0) 14%),
    linear-gradient(0deg, rgba(6, 18, 15, 0.52), rgba(6, 18, 15, 0) 16%);
}

.site-page main > .section > * {
  position: relative;
  z-index: 1;
}
