:root {
  --ink: #10251f;
  --ink-2: #223a32;
  --paper: #fbf6e9;
  --paper-2: #efe4d0;
  --panel: #fffdf6;
  --line: #dacbb4;
  --soil: #7a5524;
  --moss: #0f6b57;
  --leaf: #21a276;
  --amber: #e49a25;
  --blue: #275c8a;
  --coral: #d46c5c;
  --mint: #dff1e5;
  --sky: #dfeaf2;
  --shadow: 0 24px 70px rgba(16, 37, 31, 0.18);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 50;
  padding: 10px 14px;
  color: #ffffff;
  background: var(--ink);
  transform: translateY(-140%);
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 76px;
  padding: 12px 28px;
  color: #ffffff;
  background: rgba(16, 37, 31, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
}

.brand {
  width: 264px;
  text-decoration: none;
}

.brand img {
  width: 100%;
}

.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
  justify-content: end;
  font-size: 14px;
  font-weight: 850;
}

.nav-links a,
.header-action {
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--amber);
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.header-action:hover,
.header-action:focus {
  background: rgba(255, 255, 255, 0.12);
}

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(16, 37, 31, 0.96) 0%, rgba(16, 37, 31, 0.88) 44%, rgba(16, 37, 31, 0.42) 72%),
    radial-gradient(circle at 78% 28%, rgba(225, 154, 37, 0.18), transparent 30%),
    linear-gradient(135deg, #10251f, #1e382d 55%, #7a5524);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  background: linear-gradient(180deg, transparent, var(--paper));
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 48px, 560px);
  margin: 0 auto;
  padding-top: 96px;
  transform: translateX(-42%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(46px, 6.5vw, 86px);
  line-height: 0.96;
}

.hero-lede {
  max-width: 540px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 22px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
}

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

.btn.secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.btn.dark {
  color: #ffffff;
  background: var(--ink);
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin: 54px 0 0;
}

.hero-proof div {
  min-height: 96px;
  padding: 20px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero-proof dt {
  color: #ffffff;
  font-size: 26px;
  font-weight: 950;
}

.hero-proof dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.workspace {
  position: absolute;
  right: max(28px, calc((100vw - 1180px) / 2));
  top: 128px;
  width: min(47vw, 660px);
  height: 560px;
}

.screen-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  color: var(--ink);
  background: rgba(255, 253, 246, 0.86);
  box-shadow: 0 28px 60px rgba(4, 18, 13, 0.2);
  backdrop-filter: blur(12px);
}

.screen-main {
  top: 40px;
  right: 0;
  width: min(100%, 560px);
  padding: 28px;
}

.card-label {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--moss);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.agent-flow {
  display: grid;
  grid-template-columns: 1fr 18px 1fr 18px 1fr 18px 1fr;
  gap: 10px;
  align-items: center;
  margin-top: 28px;
}

.agent-flow span {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: #ffffff;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.agent-flow i {
  height: 3px;
  background: var(--amber);
}

.agent-reply {
  margin-top: 26px;
  padding: 22px;
  border-radius: 14px;
  background: var(--mint);
}

.agent-reply strong {
  font-size: 22px;
}

.agent-reply p {
  margin: 8px 0 0;
}

.screen-side {
  right: 42px;
  bottom: 44px;
  width: 260px;
  padding: 22px;
}

.screen-side span {
  color: var(--moss);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.screen-side p {
  margin: 12px 0 0;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--sky);
  font-weight: 800;
}

.soil-pot {
  position: absolute;
  left: 6%;
  bottom: 42px;
  width: 230px;
  height: 260px;
}

.soil-pot::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 70px;
  height: 88px;
  border-radius: 0 0 32px 32px;
  background: #8b642f;
}

.soil-pot::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 128px;
  height: 70px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, #2a2116 0%, #2a2116 50%, #9a6f38 52%, #9a6f38 100%);
}

.sprout {
  position: absolute;
  bottom: 164px;
  width: 10px;
  height: 116px;
  border-radius: 999px;
  background: #275842;
  transform-origin: bottom;
}

.sprout::before {
  content: "";
  position: absolute;
  top: -24px;
  left: -44px;
  width: 104px;
  height: 62px;
  border-radius: 54% 46% 52% 48%;
  background: #60a44b;
  box-shadow: inset -10px -10px 0 rgba(16, 37, 31, 0.12);
}

.sprout.one {
  left: 72px;
  height: 90px;
  transform: rotate(-8deg);
}

.sprout.two {
  left: 116px;
  height: 132px;
}

.sprout.two::before {
  background: #86b35c;
}

.sprout.three {
  left: 162px;
  height: 94px;
  transform: rotate(7deg);
}

.sprout.three::before {
  background: #4b976f;
}

.pot-face {
  position: absolute;
  left: 76px;
  bottom: 0;
  width: 84px;
  height: 92px;
  border-radius: 30px;
  background: #10251f;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

.pot-face span {
  position: absolute;
  top: 34px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #8dbca4;
}

.pot-face span:first-child {
  left: 22px;
}

.pot-face span:nth-child(2) {
  right: 22px;
}

.pot-face b {
  position: absolute;
  left: 26px;
  right: 26px;
  top: 62px;
  height: 5px;
  border-radius: 999px;
  background: #8dbca4;
}

.notice-strip {
  position: relative;
  z-index: 4;
  display: flex;
  gap: 10px;
  align-items: center;
  width: min(100% - 48px, 1180px);
  margin: -28px auto 0;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.notice-strip strong {
  white-space: nowrap;
}

.section {
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
  padding: 96px 0;
}

.split-intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.section h2,
.pathway-copy h2,
.join-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1;
}

.intro-copy p,
.section-heading p,
.pathway-copy p,
.join-copy p {
  margin: 0;
  color: #4f625a;
  font-size: 19px;
}

.intro-copy p + p {
  margin-top: 18px;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin-bottom: 18px;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.outcome-section {
  padding-top: 20px;
}

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

.outcome-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(145deg, #10251f, #184538);
  box-shadow: 0 18px 45px rgba(16, 37, 31, 0.16);
}

.outcome-card.website-card {
  background: linear-gradient(145deg, #1f3d51, #275c8a);
}

.outcome-card.app-card {
  background: linear-gradient(145deg, #5c431f, #9f681f);
}

.outcome-card span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  font-weight: 950;
}

.outcome-card h3 {
  margin: 18px 0 12px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
}

.outcome-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.outcome-card a {
  width: fit-content;
  margin-top: auto;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  color: #ffffff;
  font-weight: 900;
  text-decoration: none;
}

.outcome-card a:hover,
.outcome-card a:focus {
  background: rgba(255, 255, 255, 0.12);
}

.principle-card,
.community-grid article,
.offer-card,
.join-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 36px rgba(16, 37, 31, 0.08);
}

.principle-card {
  min-height: 286px;
  padding: 26px;
  border-top: 8px solid var(--soil);
}

.principle-card.accent-green {
  border-top-color: var(--moss);
}

.principle-card.accent-blue {
  border-top-color: var(--blue);
}

.principle-card.accent-amber {
  border-top-color: var(--amber);
}

.principle-card span {
  color: var(--soil);
  font-size: 13px;
  font-weight: 950;
}

.principle-card h3,
.community-grid h3 {
  margin: 18px 0 10px;
  font-size: 24px;
  line-height: 1.05;
}

.principle-card p,
.community-grid p,
.price-grid p,
.site-footer p {
  margin: 0;
  color: #53675f;
}

.pathway-band {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(16, 37, 31, 0.98), rgba(31, 72, 56, 0.96)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 96px);
}

.pathway-inner {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 56px;
  align-items: center;
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
  padding: 100px 0;
}

.pathway-copy p {
  color: rgba(255, 255, 255, 0.82);
  margin: 22px 0 30px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  min-height: 104px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.timeline strong {
  display: block;
  color: var(--amber);
}

.timeline span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.86);
}

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

.community-grid article {
  min-height: 202px;
  padding: 26px;
}

.offer-section {
  padding-top: 20px;
}

.offer-card {
  padding: 44px;
  background:
    linear-gradient(135deg, rgba(255, 253, 246, 0.96), rgba(223, 241, 229, 0.9)),
    #ffffff;
}

.offer-card h2 {
  max-width: 860px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.price-grid div {
  min-height: 160px;
  padding: 24px;
  border: 1px solid rgba(16, 37, 31, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.price-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
}

.join-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: start;
  padding-top: 60px;
}

.join-copy p {
  margin-top: 22px;
}

.join-form {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.join-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.join-form input,
.join-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
}

.join-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: #5d7168;
  font-size: 14px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 40px 28px;
  color: #ffffff;
  background: var(--ink);
}

.site-footer img {
  width: 220px;
  margin-bottom: 12px;
}

.site-footer p {
  max-width: 440px;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 850;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus {
  color: var(--amber);
}

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero-inner {
    transform: none;
    margin-left: 24px;
  }

  .workspace {
    opacity: 0.48;
    right: -140px;
    width: 680px;
  }

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

  .pathway-inner,
  .split-intro,
  .join-section {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .site-header {
    gap: 10px;
    min-height: 68px;
    padding: 10px 14px;
  }

  .brand {
    width: 210px;
  }

  .header-action {
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-inner {
    width: calc(100% - 32px);
    margin: 0 auto;
    padding-top: 88px;
  }

  .hero h1 {
    font-size: clamp(42px, 14vw, 58px);
  }

  .hero-lede {
    font-size: 18px;
  }

  .hero-proof,
  .principles-grid,
  .outcome-grid,
  .timeline,
  .community-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    margin-top: 32px;
  }

  .workspace {
    right: -260px;
    top: 132px;
    opacity: 0.25;
    transform: scale(0.86);
  }

  .notice-strip {
    display: block;
    width: calc(100% - 32px);
  }

  .notice-strip span {
    display: block;
    margin-top: 6px;
  }

  .section,
  .pathway-inner {
    width: calc(100% - 32px);
    padding: 72px 0;
  }

  .offer-card,
  .join-form {
    padding: 24px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
