:root {
  --ink: #101820;
  --muted: #60707c;
  --paper: #fbfaf6;
  --surface: #ffffff;
  --line: #dbe2df;
  --green: #13795b;
  --green-dark: #0e4d3e;
  --yellow: #f4c95d;
  --coral: #e76f51;
  --blue: #2d6cdf;
  --shadow: 0 20px 60px rgba(16, 24, 32, 0.12);
}

* {
  box-sizing: border-box;
}

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;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(219, 226, 223, 0.78);
  background: rgba(251, 250, 246, 0.88);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.logo-strip,
.panel-topline,
footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 2px solid var(--green-dark);
  border-radius: 8px;
  color: var(--green-dark);
  background: #d8f1dd;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.nav-links {
  gap: clamp(14px, 3vw, 28px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 750;
  white-space: nowrap;
}

.header-cta {
  padding: 0 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(16, 24, 32, 0.06);
}

.button {
  padding: 0 20px;
  border: 1px solid transparent;
}

.button.primary {
  color: #ffffff;
  background: var(--green-dark);
}

.button.secondary {
  color: var(--green-dark);
  border-color: #b7c8bf;
  background: rgba(255, 255, 255, 0.72);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(58px, 8vw, 110px) clamp(18px, 5vw, 72px) 42px;
  overflow: hidden;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
  line-height: 1.2;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 28px;
  color: #40525f;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

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

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

.hero-stats div,
.metric-card,
.price-card,
.feature-list article,
.proof-board,
.quote,
.dashboard-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.hero-stats div {
  min-height: 112px;
  padding: 18px;
}

.hero-stats dt {
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 850;
  line-height: 1;
}

.hero-stats dd {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: 600px;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  inset: 6% 0 auto 12%;
  z-index: -1;
  width: 82%;
  height: 70%;
  border: 1px solid #cfe1d7;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(19, 121, 91, 0.16), rgba(244, 201, 93, 0.24)),
    #eef6ed;
  content: "";
  transform: rotate(-3deg);
}

.hero-visual img {
  position: absolute;
  top: 2%;
  right: 1%;
  width: min(100%, 620px);
  border-radius: 8px;
  filter: drop-shadow(0 28px 40px rgba(16, 24, 32, 0.2));
}

.dashboard-panel {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 10%;
  padding: 20px;
  box-shadow: var(--shadow);
}

.panel-topline {
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.88rem;
}

.panel-topline strong {
  color: var(--green-dark);
}

.meter {
  height: 12px;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: #e5ece8;
}

.meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--yellow), var(--coral));
}

.panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.panel-grid strong {
  color: var(--ink);
}

.logo-strip {
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 18px clamp(18px, 5vw, 72px) 42px;
}

.logo-strip span {
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
  font-weight: 750;
}

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 70px);
  align-items: start;
  background: #ffffff;
}

.split > div:first-child p:not(.eyebrow),
.section-heading + p {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.feature-list article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 0 18px;
  padding: 22px;
}

.feature-list .icon {
  grid-row: span 2;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 8px;
  color: var(--green-dark);
  background: #d8f1dd;
  font-weight: 850;
}

.feature-list p,
.metric-card p,
.price-card p,
.price-card li,
.answer p {
  color: var(--muted);
}

.credits {
  background: #edf5f0;
}

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

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

.metric-card {
  min-height: 270px;
  padding: 26px;
}

.metric {
  display: block;
  margin-bottom: 48px;
  color: var(--green-dark);
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  font-weight: 900;
  line-height: 0.95;
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 18px;
  align-items: stretch;
  background: var(--green-dark);
  color: #ffffff;
}

.quote,
.proof-board {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.quote {
  padding: clamp(26px, 5vw, 48px);
}

.quote p {
  margin-bottom: 22px;
  font-size: clamp(1.7rem, 4vw, 3.2rem);
  line-height: 1.06;
}

.quote span,
.proof-board span {
  color: #c6ddd4;
}

.proof-board {
  display: grid;
  gap: 1px;
  overflow: hidden;
}

.proof-board div {
  display: grid;
  align-content: center;
  min-height: 150px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.proof-board strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
}

.pricing {
  background: #ffffff;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 510px;
  padding: 26px;
}

.price-card.featured {
  border-color: var(--green);
  box-shadow: var(--shadow);
}

.badge {
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--green-dark);
  background: #d8f1dd;
  font-size: 0.78rem;
  font-weight: 850;
}

.price {
  margin-bottom: 12px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 26px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 24px;
}

.price-card li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

.price-card .button {
  margin-top: auto;
}

.faq {
  background: #f5f1e8;
}

.accordion {
  max-width: 920px;
}

.accordion button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 18px 0;
  border: 0;
  border-top: 1px solid #d7d0c0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-weight: 820;
  text-align: left;
  cursor: pointer;
}

.accordion button span {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid #c7bfae;
  border-radius: 8px;
  font-size: 1.25rem;
  font-weight: 750;
  line-height: 1;
  transform: translateY(-1px);
}

.answer {
  max-width: 760px;
  padding: 0 0 22px;
}

.final-cta {
  padding: clamp(76px, 10vw, 130px) clamp(18px, 5vw, 72px);
  color: #ffffff;
  background:
    linear-gradient(rgba(16, 24, 32, 0.74), rgba(16, 24, 32, 0.62)),
    url("assets/hero-mail.png") center 30% / cover;
}

.final-cta h2 {
  max-width: 780px;
}

footer {
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: #ffffff;
  font-size: 0.92rem;
}

footer a {
  color: var(--ink);
  font-weight: 800;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero,
  .split,
  .proof {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 560px;
  }

  .credit-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    min-height: auto;
  }
}

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

  .header-cta {
    display: none;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 4.6rem);
  }

  .hero {
    padding-top: 42px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    min-height: 96px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-visual img {
    width: 112%;
    max-width: none;
    right: -12%;
  }

  .dashboard-panel {
    right: 0;
    bottom: 0;
    left: 0;
  }

  .feature-list article {
    grid-template-columns: 1fr;
  }

  .feature-list .icon {
    grid-row: auto;
    margin-bottom: 16px;
  }

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

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
