:root {
  --ink: #102018;
  --muted: #4d5f58;
  --canvas: #eef4f0;
  --surface: #f7faf8;
  --accent: #0b6e4f;
  --accent-deep: #08553d;
  --mist: #c5ddd2;
  --line: #c9d7cf;
  --white: #ffffff;
  --strike: #7a8c84;
  --shadow: 0 18px 50px rgba(16, 32, 24, 0.08);
  --font-display: "Source Serif 4", "Iowan Old Style", Palatino, serif;
  --font-sans: "Sora", "Avenir Next", "Segoe UI", sans-serif;
  --radius: 6px;
  --header-h: 4.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background:
    radial-gradient(1100px 520px at 8% -10%, rgba(11, 110, 79, 0.16), transparent 55%),
    radial-gradient(900px 480px at 92% 0%, rgba(26, 90, 110, 0.12), transparent 50%),
    linear-gradient(180deg, #e8f1ec 0%, var(--canvas) 28%, #e9f0ec 100%);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-deep); text-underline-offset: 0.15em; }
a:hover { color: var(--accent); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: 0.6rem 1rem;
  z-index: 1000;
}
.skip-link:focus { left: 0.75rem; top: 0.75rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(238, 244, 240, 0.84);
  border-bottom: 1px solid rgba(201, 215, 207, 0.7);
}

.site-header__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--ink);
}

.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(11, 110, 79, 0.2);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.brand__tag {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.nav {
  display: none;
  align-items: center;
  gap: 1.35rem;
}

.nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 500;
}

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

.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.9rem;
  background: var(--accent);
  color: var(--white) !important;
  border-radius: var(--radius);
  font-weight: 600;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--ink);
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 1.1rem;
  height: 2px;
  background: var(--ink);
}
.nav-toggle span::before { top: -5px; }
.nav-toggle span::after { top: 5px; }

@media (min-width: 880px) {
  .nav { display: flex; }
  .nav-toggle { display: none; }
}

.nav.is-open {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0.75rem 1.25rem 1.25rem;
  background: rgba(247, 250, 248, 0.98);
  border-bottom: 1px solid var(--line);
}
.nav.is-open a {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
}
.nav.is-open .nav__cta {
  margin-top: 0.75rem;
  justify-content: center;
  border: 0;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4.5rem 0;
}

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

.eyebrow {
  margin: 0 0 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0 0 0.75rem;
}

h1 { font-size: clamp(2.35rem, 5.5vw, 3.75rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.35rem); }
h3 { font-size: 1.25rem; }

.lede {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 36rem;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--accent);
  color: var(--white);
}
.btn--primary:hover { background: var(--accent-deep); color: var(--white); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-deep); }
.btn--light {
  background: var(--white);
  color: var(--ink);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Hero — one composition, brand-first, full-bleed */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(8, 28, 20, 0.35) 0%, rgba(8, 28, 20, 0.78) 55%, rgba(8, 24, 18, 0.92) 100%),
    radial-gradient(800px 500px at 70% 20%, rgba(11, 110, 79, 0.45), transparent 60%),
    linear-gradient(135deg, #0a2a1d 0%, #123528 40%, #0d3d4a 100%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(197, 221, 210, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197, 221, 210, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 60% 40%, black 20%, transparent 75%);
  animation: gridDrift 28s linear infinite;
  pointer-events: none;
}

@keyframes gridDrift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-48px, -24px, 0); }
}

.hero__orb {
  position: absolute;
  width: min(52vw, 420px);
  height: min(52vw, 420px);
  right: 6%;
  top: 12%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.22), transparent 35%),
    radial-gradient(circle at 50% 50%, rgba(11, 110, 79, 0.55), transparent 65%);
  filter: blur(2px);
  animation: orbPulse 6.5s var(--ease) infinite alternate;
  pointer-events: none;
}

@keyframes orbPulse {
  from { transform: scale(1) translateY(0); opacity: 0.85; }
  to { transform: scale(1.08) translateY(12px); opacity: 1; }
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 4.5rem 1.25rem 4rem;
}

.hero .brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: riseIn 700ms var(--ease) 80ms forwards;
}

.hero .brand-lockup img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.18);
}

.hero .brand-lockup strong {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 650;
  letter-spacing: -0.02em;
}

.hero h1 {
  max-width: 14ch;
  color: var(--white);
  opacity: 0;
  animation: riseIn 800ms var(--ease) 180ms forwards;
}

.hero .lede {
  color: rgba(236, 245, 240, 0.86);
  max-width: 34rem;
  margin-top: 1rem;
  opacity: 0;
  animation: riseIn 800ms var(--ease) 280ms forwards;
}

.hero .cta-row {
  opacity: 0;
  animation: riseIn 800ms var(--ease) 400ms forwards;
}

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

@media (prefers-reduced-motion: reduce) {
  .hero__grid,
  .hero__orb,
  .hero .brand-lockup,
  .hero h1,
  .hero .lede,
  .hero .cta-row {
    animation: none !important;
  }

  .hero .brand-lockup,
  .hero h1,
  .hero .lede,
  .hero .cta-row {
    opacity: 1;
    transform: none;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

.split {
  display: grid;
  gap: 2rem;
}
@media (min-width: 880px) {
  .split { grid-template-columns: 1.05fr 0.95fr; align-items: start; gap: 3rem; }
}

.panel {
  background: rgba(247, 250, 248, 0.78);
  border: 1px solid var(--line);
  padding: 1.35rem 1.4rem;
}

.panel--accent {
  border-left: 4px solid var(--accent);
}

.fine {
  font-size: 0.88rem;
  color: var(--muted);
}

.tiers {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}
@media (min-width: 800px) {
  .tiers { grid-template-columns: 1fr 1.12fr 1fr; align-items: stretch; }
}

.tier {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.25rem 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.tier--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow);
  transform: translateY(-2px);
}
.tier__badge {
  align-self: flex-start;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  background: var(--accent);
  color: var(--white);
  padding: 0.22rem 0.45rem;
  font-weight: 600;
}
.tier .price {
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.tier .price span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
}
.tier .launch {
  color: var(--strike);
  font-size: 0.9rem;
}
.tier ul {
  margin: 0.4rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.tier li { margin: 0.28rem 0; }

.steps {
  display: grid;
  gap: 1rem;
  counter-reset: step;
}
@media (min-width: 800px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.25rem;
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.demo-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 720px) {
  .demo-grid { grid-template-columns: repeat(2, 1fr); }
}

.demo-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.2rem 1.25rem;
  transition: border-color 180ms var(--ease), transform 180ms var(--ease);
}
.demo-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  color: inherit;
}
.demo-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}
.demo-card span { color: var(--muted); font-size: 0.92rem; }

.proof-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}
.proof-bar strong { color: var(--ink); font-weight: 600; }

.band {
  background: linear-gradient(135deg, #0b3a2b 0%, #0b6e4f 55%, #0f5564 100%);
  color: var(--white);
}
.band .lede { color: rgba(236, 245, 240, 0.88); }
.band h2 { color: var(--white); }

.form {
  display: grid;
  gap: 0.9rem;
}
.form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 500;
}
.form input,
.form select,
.form textarea {
  font: inherit;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}
.form textarea { min-height: 120px; resize: vertical; }
.form .hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form__note { font-size: 0.82rem; color: var(--muted); margin: 0; }
.form-success {
  padding: 1rem 1.1rem;
  background: rgba(11, 110, 79, 0.1);
  border: 1px solid var(--accent);
}

.site-footer {
  margin-top: 2rem;
  padding: 2.5rem 0 6.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}
.site-footer__grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 720px) {
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.site-footer a { color: var(--ink); text-decoration: none; }
.site-footer a:hover { color: var(--accent); }
.site-footer nav { display: grid; gap: 0.45rem; }
.site-footer h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.65rem;
  font-family: var(--font-sans);
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: flex;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(16, 32, 24, 0.94);
  backdrop-filter: blur(10px);
}
.sticky-cta a {
  flex: 1;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 0.5rem;
  border-radius: var(--radius);
}
.sticky-cta__call {
  background: var(--white);
  color: var(--ink);
}
.sticky-cta__plan {
  background: var(--accent);
  color: var(--white);
}
@media (min-width: 880px) {
  .sticky-cta { display: none; }
  .site-footer { padding-bottom: 2.5rem; }
}

.page-hero {
  padding: 3.25rem 0 1.5rem;
}
.page-hero h1 { max-width: 18ch; }

.prose {
  max-width: 40rem;
}
.prose p { color: var(--muted); }
.prose ul { color: var(--muted); }
.prose h2 { margin-top: 2rem; }

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 0.9rem 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq p {
  margin: 0.6rem 0 0.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.list-check li {
  position: relative;
  padding-left: 1.4rem;
  margin: 0.45rem 0;
  color: var(--muted);
}
.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
}

.wp-block-group,
.entry-content > * + * {
  margin-top: 1rem;
}
