:root {
  --paper: #fbfaf6;
  --cream: #f4f1e9;
  --mist: #dfece6;
  --sage: #86ad9d;
  --light: #ddf36a;
  --peach: #ff7658;
  --forest: #174c3f;
  --ink: #102d27;
  --white: #ffffff;
  --muted: rgba(16, 45, 39, 0.62);
  --line: rgba(16, 45, 39, 0.1);
  --shadow: 0 24px 70px rgba(25, 66, 51, 0.1);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Avenir Next", Avenir, "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 5% 0, rgba(134, 173, 157, 0.14), transparent 28rem), var(--paper);
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(20px, 5vw, 72px);
  background: rgba(251, 250, 246, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-text strong span {
  color: var(--peach);
}

.brand-text small {
  margin-top: 5px;
  color: rgba(16, 45, 39, 0.45);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.nav-links,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(16, 45, 39, 0.55);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--peach);
}

.header-cta {
  padding: 12px 18px;
  border-radius: 16px;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 800;
  background: var(--forest);
  box-shadow: 0 10px 20px rgba(23, 76, 63, 0.15);
}

.section {
  padding: clamp(70px, 9vw, 122px) clamp(20px, 5vw, 72px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  max-width: 1280px;
  min-height: calc(100vh - 86px);
  margin: 0 auto;
  padding: clamp(36px, 5vw, 64px);
  border: 1px solid var(--line);
  border-radius: 44px;
  background-color: var(--cream);
  background-image: linear-gradient(90deg, rgba(16, 45, 39, 0.055) 1px, transparent 0), linear-gradient(180deg, rgba(16, 45, 39, 0.055) 1px, transparent 0);
  background-size: 40px 40px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: -110px;
  right: -90px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: rgba(221, 243, 106, 0.65);
  filter: blur(64px);
  pointer-events: none;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: rgba(23, 76, 63, 0.72);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Newsreader", "Iowan Old Style", Baskerville, Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 850px;
  margin-bottom: 26px;
  color: var(--ink);
  font-size: clamp(3.4rem, 7.4vw, 6.4rem);
  line-height: 0.88;
}

h2 {
  color: var(--ink);
  font-size: clamp(2.55rem, 4.7vw, 4.35rem);
  line-height: 1.02;
}

h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.3;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(16, 45, 39, 0.6);
  font-size: clamp(1.02rem, 1.6vw, 1.14rem);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 15px 26px;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--forest);
  box-shadow: 0 16px 34px rgba(23, 76, 63, 0.18);
}

.button-primary:hover {
  background: var(--ink);
}

.button-secondary {
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(16, 45, 39, 0.15);
}

.button-secondary:hover {
  background: rgba(16, 45, 39, 0.05);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: rgba(16, 45, 39, 0.45);
  font-size: 0.82rem;
  font-weight: 800;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--peach);
}

.hero-visual {
  display: flex;
  justify-content: center;
  padding: clamp(22px, 4vw, 42px);
  border-radius: 36px;
  background: var(--forest);
  overflow: hidden;
}

.app-shell,
.dashboard-panel,
.info-card,
.ebook-box,
.steps article,
.final-cta {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.app-shell {
  width: min(100%, 460px);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 32px;
  background: var(--paper);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.28);
  transform: rotate(-1.5deg);
}

.app-topbar {
  display: flex;
  gap: 7px;
  padding-bottom: 18px;
}

.app-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sage);
}

.app-topbar span:nth-child(2) {
  background: var(--peach);
}

.app-topbar span:nth-child(3) {
  background: var(--light);
}

.metric-card,
.priority-card {
  padding: 20px;
  border-radius: 24px;
  background: var(--mist);
}

.metric-card p,
.priority-card p,
.dashboard-panel p {
  margin-bottom: 7px;
  color: rgba(16, 45, 39, 0.55);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metric-card strong,
.priority-card strong {
  color: var(--ink);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 600;
}

.main-metric {
  margin-bottom: 14px;
  color: var(--white);
  background: var(--ink);
}

.main-metric p,
.main-metric strong {
  color: var(--white);
}

.main-metric strong {
  font-size: 3.5rem;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 14px;
}

.mini-grid .metric-card:nth-child(2) {
  background: var(--peach);
}

.progress {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--light);
}

.priority-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--cream);
}

.priority-card span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  font-weight: 800;
  background: var(--light);
}

.section-heading {
  max-width: 800px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.card-grid {
  display: grid;
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

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

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.statement-box {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 36px;
  background: var(--cream);
}

.statement-box p {
  margin: 0;
  color: var(--ink);
  font-family: "Newsreader", "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.info-card {
  padding: 28px;
  box-shadow: none;
}

.info-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.icon-dot {
  display: block;
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--light);
  border: 9px solid var(--cream);
  box-shadow: 0 0 0 1px rgba(16, 45, 39, 0.1);
}

.solution-section,
.revelation-section {
  background: var(--ink);
}

.solution-section h2,
.solution-section h3,
.revelation-section h2,
.revelation-section h3 {
  color: var(--white);
}

.solution-section .eyebrow,
.revelation-section .eyebrow {
  color: var(--light);
}

.solution-section .section-heading p:not(.eyebrow),
.revelation-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.5);
}

.solution-section .info-card,
.revelation-section .info-card {
  border-color: rgba(255, 255, 255, 0.15);
  background: transparent;
}

.solution-section .info-card p,
.revelation-section .info-card p {
  color: rgba(255, 255, 255, 0.5);
}

.lifted {
  box-shadow: none;
}

.map-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 1.08fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  background: var(--paper);
}

.map-copy {
  max-width: 620px;
}

.map-copy p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.08rem;
}

.map-list {
  display: grid;
  gap: 14px;
}

.map-list span {
  position: relative;
  display: block;
  padding: 20px 20px 20px 62px;
  border: 1px solid var(--line);
  border-radius: 24px;
  color: var(--ink);
  font-weight: 800;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(16, 45, 39, 0.06);
}

.map-list span::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--light);
  transform: translateY(-50%);
  box-shadow: inset 0 0 0 7px var(--forest);
}

.future-section {
  background: var(--peach);
}

.future-card {
  max-width: 1120px;
  margin: 0 auto;
}

.future-card p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(16, 45, 39, 0.65);
  font-size: 1.1rem;
}

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

.dream-grid span {
  min-height: 86px;
  padding: 18px;
  border: 1px solid rgba(16, 45, 39, 0.1);
  border-radius: 24px;
  color: var(--ink);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.58);
}

.dream-grid span:last-child {
  grid-column: span 3;
  min-height: 72px;
  background: var(--light);
}

.timeline-section {
  background: var(--cream);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  max-width: 1120px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 34px;
  height: 2px;
  background: rgba(16, 45, 39, 0.12);
}

.timeline-step {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 72px;
}

.timeline-step::before {
  content: "";
  position: absolute;
  top: 17px;
  width: 34px;
  height: 34px;
  border: 8px solid var(--cream);
  border-radius: 50%;
  background: var(--forest);
  box-shadow: 0 0 0 1px rgba(16, 45, 39, 0.12);
}

.timeline-step:nth-child(2)::before,
.timeline-step:nth-child(4)::before {
  background: var(--peach);
}

.timeline-step:last-child::before {
  background: var(--light);
}

.timeline-step span {
  width: 100%;
  min-height: 76px;
  padding: 18px 14px;
  border: 1px solid var(--line);
  border-radius: 24px;
  color: var(--ink);
  text-align: center;
  font-weight: 800;
  background: var(--white);
}

.product-demo {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.dashboard-panel {
  padding: 24px;
  box-shadow: 0 14px 36px rgba(16, 45, 39, 0.08);
}

.dashboard-panel.large {
  min-height: 430px;
}

.dashboard-stack {
  display: grid;
  gap: 18px;
}

.panel-header,
.balance-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.panel-header {
  margin-bottom: 22px;
}

.panel-header span {
  color: rgba(16, 45, 39, 0.5);
  font-weight: 800;
}

.panel-header strong,
.balance-row strong {
  color: var(--ink);
}

.balance-row {
  align-items: stretch;
  margin-bottom: 34px;
}

.balance-row div {
  flex: 1;
  padding: 18px;
  border-radius: 22px;
  background: var(--cream);
}

.soft-chart {
  display: flex;
  align-items: end;
  gap: 16px;
  height: 210px;
  padding: 24px;
  border-radius: 24px;
  background: var(--mist);
}

.soft-chart span {
  flex: 1;
  min-width: 26px;
  border-radius: 999px 999px 6px 6px;
  background: var(--forest);
}

.soft-chart span:nth-child(2),
.soft-chart span:nth-child(5) {
  background: var(--peach);
}

.small-note {
  margin-bottom: 0;
  color: rgba(16, 45, 39, 0.6) !important;
  font-size: 0.92rem !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.ebook-section {
  background: var(--cream);
}

.ebook-box {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: 30px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 58px);
  border-radius: 36px;
  background: var(--white);
  box-shadow: none;
}

.ebook-box h2 {
  margin-bottom: 18px;
}

.ebook-box p {
  color: var(--muted);
}

.delivery-note {
  font-weight: 800;
  color: var(--forest) !important;
}

.benefit-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.benefit-list li,
.difference-list span {
  padding: 15px 18px;
  border-radius: 22px;
  background: var(--mist);
  color: var(--ink);
  font-weight: 800;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.steps article {
  padding: 26px;
  box-shadow: none;
}

.steps span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  color: var(--ink);
  font-weight: 800;
  background: var(--light);
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.difference-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: 42px;
  align-items: center;
  background: var(--peach);
}

.difference-copy p:not(.eyebrow) {
  color: rgba(16, 45, 39, 0.65);
  font-size: 1.1rem;
}

.difference-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.difference-list span {
  background: rgba(255, 255, 255, 0.58);
}

.final-cta {
  max-width: 980px;
  margin: clamp(64px, 9vw, 112px) auto;
  padding: clamp(38px, 6vw, 76px) clamp(22px, 6vw, 72px);
  border-radius: 36px;
  text-align: center;
  background: var(--light);
  box-shadow: none;
}

.final-cta p:not(.eyebrow) {
  max-width: 560px;
  margin: 0 auto 30px;
  color: rgba(16, 45, 39, 0.65);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: end;
  padding: 42px clamp(20px, 5vw, 72px);
  background: var(--ink);
}

.site-footer .brand,
.site-footer .brand-text strong,
.site-footer .brand-text small {
  color: var(--white);
}

.site-footer p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.4);
}

.site-footer nav {
  color: rgba(255, 255, 255, 0.65);
}

.footer-note {
  grid-column: 1 / -1;
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .site-header {
    position: static;
  }

  .hero,
  .product-demo,
  .ebook-box,
  .difference-section,
  .map-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .card-grid.three,
  .card-grid.four,
  .steps,
  .dream-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dream-grid span:last-child {
    grid-column: span 2;
  }

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

  .timeline::before {
    left: 17px;
    right: auto;
    top: 18px;
    bottom: 18px;
    width: 2px;
    height: auto;
  }

  .timeline-step {
    justify-content: flex-start;
    padding-top: 0;
    padding-left: 64px;
  }

  .timeline-step::before {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .dashboard-panel.large {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    padding: 16px 20px;
  }

  .nav-links {
    display: none;
  }

  .header-cta {
    padding: 10px 14px;
    font-size: 0.86rem;
  }

  .section {
    padding: 58px 20px;
  }

  .hero {
    margin: 0 16px;
    padding: 30px 18px;
    border-radius: 32px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.25rem);
  }

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

  .hero-actions,
  .button {
    width: 100%;
  }

  .trust-list li {
    width: 100%;
  }

  .hero-visual {
    padding: 18px;
    border-radius: 28px;
  }

  .app-shell {
    transform: none;
  }

  .mini-grid,
  .card-grid.three,
  .card-grid.four,
  .steps,
  .difference-list,
  .dream-grid,
  .balance-row {
    grid-template-columns: 1fr;
  }

  .dream-grid span:last-child {
    grid-column: span 1;
  }

  .balance-row {
    display: grid;
  }

  .soft-chart {
    height: 170px;
    padding: 18px;
  }

  .ebook-box {
    padding: 26px 20px;
    border-radius: 28px;
  }

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

  .site-footer nav {
    flex-wrap: wrap;
  }
}
