:root {
  color-scheme: light;
  --bg: #f7f3ec;
  --surface: #fffdf8;
  --surface-strong: #ffffff;
  --text: #151515;
  --muted: #5b6159;
  --line: rgba(17, 24, 39, 0.1);
  --green: #11c455;
  --green-deep: #0d9c45;
  --green-soft: #bff7d3;
  --mint: #dbffe9;
  --shadow-lg: 0 40px 80px rgba(24, 34, 24, 0.18);
  --shadow-md: 0 20px 40px rgba(24, 34, 24, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(17, 196, 85, 0.08), transparent 18%),
    linear-gradient(180deg, #f8f5ef 0%, #f2efe8 100%);
  color: var(--text);
}

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 24px 40px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  padding: 18px 28px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 20px;
  background: rgba(255, 251, 244, 0.82);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--text);
  color: #ffffff;
  font-weight: 800;
}

.brand-text {
  font-size: 1.1rem;
  font-weight: 700;
}

.site-nav,
.site-actions,
.hero-actions,
.footer-links,
.contact-details {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-nav {
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}

.site-nav a,
.nav-link-secondary {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-link-primary,
.cta-primary,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 10px;
  background: var(--green);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 18px 32px rgba(17, 196, 85, 0.22);
}

.hero {
  margin-bottom: 36px;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(440px, 0.9fr);
  gap: 24px;
  min-height: 720px;
  padding: 42px 42px 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(135deg, #10c957 0%, #0ab84d 58%, #0f9a45 100%);
  box-shadow: var(--shadow-lg);
}

.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
}

.hero-panel::before {
  top: -8%;
  left: -14%;
  width: 72%;
  height: 96%;
  border-radius: 50%;
  opacity: 0.2;
  transform: rotate(-10deg);
  background:
    repeating-radial-gradient(
      circle at 58% 48%,
      transparent 0 14px,
      rgba(255, 255, 255, 0.35) 14px 16px
    );
}

.hero-panel::after {
  right: -22%;
  bottom: -16%;
  width: 78%;
  height: 54%;
  border-radius: 50%;
  opacity: 0.18;
  transform: rotate(7deg);
  background:
    repeating-radial-gradient(
      circle at 24% 52%,
      transparent 0 15px,
      rgba(255, 255, 255, 0.34) 15px 17px
    );
}

.hero-copy,
.hero-visual,
.offerings-copy,
.offerings-visual,
.contact-layout,
.about-layout {
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 560px;
  padding: 28px 0;
  color: #ffffff;
}

.eyebrow {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1.02;
}

.hero-body {
  max-width: 520px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 28px;
  flex-wrap: wrap;
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-weight: 600;
}

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

.hero-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
}

.hero-points li::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 999px;
  background: #ffffff;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 620px;
}

.mock-analytics,
.mock-phone,
.journey-phone {
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-lg);
}

.mock-analytics {
  position: relative;
  width: min(480px, 100%);
  min-height: 480px;
  padding: 24px;
}

.analytics-topbar,
.chart-header,
.phone-header,
.phone-stat-row,
.offer-metrics {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.analytics-topbar,
.chart-header,
.phone-header,
.screen-title {
  color: #2e342d;
  font-size: 0.9rem;
  font-weight: 700;
}

.analytics-grid {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 18px;
  margin-top: 24px;
}

.donut-card,
.metric-chip,
.chart-card,
.phone-stat-row,
.phone-list article,
.offer-card,
.support-card,
.stat-block,
.contact-form,
.contact-pill,
.offering-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-strong);
}

.donut-card {
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 18px;
}

.donut-chart {
  position: relative;
  width: 132px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #ffffff 0 46px, transparent 47px),
    conic-gradient(
      #16c35a 0 45%,
      #93df7b 45% 66%,
      #f7cf66 66% 82%,
      #dbe7d9 82% 100%
    );
}

.donut-copy {
  display: grid;
  gap: 6px;
  justify-items: center;
  text-align: center;
}

.donut-copy strong {
  font-size: 1.7rem;
}

.donut-copy span,
.metric-chip span,
.item-kicker,
.offer-meta span,
.section-copy,
.contact-form label span {
  color: var(--muted);
}

.metric-stack {
  display: grid;
  gap: 14px;
}

.metric-chip {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.metric-chip strong {
  font-size: 1.25rem;
}

.chart-card {
  margin-top: 18px;
  padding: 18px;
}

.chart-line {
  position: relative;
  margin-top: 24px;
  height: 164px;
  overflow: hidden;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(17, 196, 85, 0.12), rgba(17, 196, 85, 0.02)),
    repeating-linear-gradient(
      to top,
      rgba(17, 24, 39, 0.05) 0 1px,
      transparent 1px 34px
    );
}

.chart-line span {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 20%;
  height: 140px;
  border-bottom: 4px solid #16c35a;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-radius: 0 0 160px 160px;
  transform: skewY(-10deg);
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.85rem;
}

.mock-phone {
  position: absolute;
  right: 4%;
  bottom: -22px;
  width: min(250px, 46%);
  min-height: 500px;
  padding: 18px 18px 20px;
}

.phone-header {
  padding: 10px 8px 18px;
}

.phone-header strong {
  color: var(--green-deep);
}

.phone-stat-row {
  padding: 16px;
  background: linear-gradient(180deg, #fafffc 0%, #eefaf2 100%);
}

.phone-stat-row div {
  display: grid;
  gap: 6px;
}

.phone-stat-row span,
.offer-metrics,
.site-footer,
.site-nav a {
  font-size: 0.86rem;
}

.phone-list {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.phone-list article {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.phone-list strong {
  font-size: 0.98rem;
  line-height: 1.35;
}

.progress-bar {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #e6ede5;
}

.progress-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), #69d981);
}

.bar-72 {
  width: 72%;
}

.bar-54 {
  width: 54%;
}

.bar-88 {
  width: 88%;
}

.content-band {
  margin-top: 36px;
  padding: 48px 42px;
  border-radius: 34px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 24px 60px rgba(27, 34, 27, 0.08);
}

.section-intro {
  max-width: 760px;
}

.section-intro .eyebrow {
  color: var(--green-deep);
}

.section-intro h2,
.offerings-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.08;
}

.section-copy {
  margin-top: 18px;
  max-width: 620px;
  font-size: 1rem;
  line-height: 1.75;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px;
  margin-top: 30px;
}

.about-copy {
  display: grid;
  gap: 18px;
}

.about-copy p,
.offering-item p,
.support-card p,
.contact-form label,
.contact-pill,
.stat-block p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
}

.about-stats,
.support-grid,
.footer-links {
  display: grid;
  gap: 16px;
}

.stat-block {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-deep);
}

.offerings-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
}

.offerings-visual {
  display: flex;
  justify-content: center;
}

.journey-phone {
  position: relative;
  width: min(340px, 100%);
  padding: 18px;
}

.journey-phone::before {
  content: "";
  position: absolute;
  inset: auto auto 58px -28px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, #d8ff59 0%, #d0ff50 46%, rgba(208, 255, 80, 0.1) 72%, transparent 72%);
  z-index: 0;
}

.journey-screen {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  border-radius: 28px;
  background: #ffffff;
}

.screen-title {
  padding: 12px 6px 4px;
}

.offer-card {
  display: grid;
  gap: 14px;
  padding: 16px;
}

.offer-thumb {
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
}

.offer-thumb-one {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.18)),
    linear-gradient(135deg, #9ed8ff 0%, #d6efff 32%, #d0c59d 32%, #c4a97e 52%, #87b074 52%, #8acb74 100%);
}

.offer-thumb-two {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.18)),
    linear-gradient(135deg, #9ecfff 0%, #d9f2ff 24%, #324d7f 24%, #4e6c99 52%, #d1b085 52%, #f2d1a7 100%);
}

.offer-meta {
  display: grid;
  gap: 6px;
}

.offer-meta strong,
.offering-item h3,
.support-card h3 {
  font-size: 1.06rem;
}

.offer-card-secondary {
  margin-top: 8px;
}

.offerings-copy {
  display: grid;
  gap: 24px;
}

.offerings-copy .eyebrow {
  color: var(--green-deep);
  margin-bottom: 0;
}

.offering-list,
.support-grid {
  display: grid;
  gap: 16px;
}

.offering-item,
.support-card {
  padding: 22px;
}

.offering-item h3,
.support-card h3 {
  margin: 0 0 10px;
}

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

.contact-band {
  background:
    linear-gradient(180deg, rgba(17, 196, 85, 0.05) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 24px;
  margin-top: 30px;
}

.contact-details {
  align-items: flex-start;
  flex-wrap: wrap;
  align-content: flex-start;
}

.contact-pill {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.94);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 12px;
  background: #ffffff;
  color: var(--text);
  resize: vertical;
}

.contact-form button {
  width: fit-content;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding: 0 6px;
  color: var(--muted);
}

@media (max-width: 1100px) {
  .hero-panel,
  .offerings-layout,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: auto;
  }

  .hero-visual {
    min-height: 620px;
    padding-top: 12px;
  }

  .mock-phone {
    right: 4%;
  }

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

@media (max-width: 800px) {
  .page-shell {
    padding: 14px 14px 30px;
  }

  .site-header,
  .content-band,
  .hero-panel {
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-header {
    position: static;
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-nav {
    order: 3;
    width: 100%;
  }

  .site-actions {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-copy {
    padding-top: 8px;
  }

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

  .mock-analytics {
    width: 100%;
    padding: 18px;
  }

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

  .mock-phone {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 18px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 540px) {
  .hero-copy h1,
  .section-intro h2,
  .offerings-copy h2 {
    font-size: 2.5rem;
  }

  .hero-visual {
    min-height: auto;
  }

  .journey-phone::before {
    left: 0;
    width: 220px;
    height: 220px;
  }

  .hero-panel,
  .content-band {
    border-radius: 26px;
  }
}
