:root {
  --green-950: #071d16;
  --green-900: #0a2b20;
  --green-800: #0f3f2e;
  --green-700: #146344;
  --green-600: #1b7a52;
  --green-500: #25a36b;
  --green-400: #52c98e;
  --green-300: #8be0b4;
  --green-200: #c8f2dc;
  --green-100: #eaf9f1;
  --cream: #f6f6ef;
  --white: #ffffff;
  --ink: #101812;
  --muted: #68726b;
  --line: rgba(11, 44, 32, 0.12);
  --shadow: 0 24px 70px rgba(8, 41, 30, 0.13);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.site-shell {
  overflow: hidden;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 120px 0;
  position: relative;
}

.nav-wrap {
  position: fixed;
  inset: 18px 0 auto;
  z-index: 1000;
  pointer-events: none;
}

.nav {
  min-height: 68px;
  padding: 10px 12px 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  background: rgba(250, 250, 245, 0.82);
  box-shadow: 0 12px 35px rgba(9, 41, 30, 0.08);
  backdrop-filter: blur(18px);
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Manrope", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 29px;
  height: 29px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  align-items: end;
  padding: 5px;
  border-radius: 8px;
  background: var(--green-700);
}

.brand-mark span {
  display: block;
  border-radius: 4px;
  background: var(--green-200);
}

.brand-mark span:nth-child(1) { height: 40%; }
.brand-mark span:nth-child(2) { height: 70%; }
.brand-mark span:nth-child(3) { height: 100%; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-links > a:not(.button) {
  color: #425048;
  transition: color 0.2s ease;
}

.nav-links > a:not(.button):hover {
  color: var(--green-700);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  border-radius: 11px;
  background: var(--green-100);
}

.nav-toggle span {
  width: 100%;
  height: 2px;
  display: block;
  margin: 4px 0;
  background: var(--green-900);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-small {
  min-height: 44px;
  padding: 0 18px;
}

.button-dark {
  color: var(--white);
  background: var(--green-950);
}

.button-primary {
  color: var(--white);
  background: var(--green-600);
  box-shadow: 0 12px 30px rgba(27, 122, 82, 0.25);
}

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

.button-light {
  color: var(--green-950);
  background: var(--white);
}

.hero {
  min-height: 900px;
  padding-top: 190px;
  background:
    radial-gradient(circle at 82% 18%, rgba(82, 201, 142, 0.22), transparent 30%),
    linear-gradient(180deg, #f7f8f2 0%, #eef7f0 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 60px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--green-700);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 6px rgba(37, 163, 107, 0.12);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 680px;
  font-size: clamp(3.4rem, 6.2vw, 6.25rem);
}

h1 span {
  color: var(--green-600);
}

h2 {
  font-size: clamp(2.35rem, 4.3vw, 4.35rem);
}

h3 {
  font-size: 1.5rem;
}

.hero-text {
  max-width: 640px;
  margin: 28px 0 0;
  color: #526057;
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.text-link span {
  font-size: 1.25rem;
}

.trust-row {
  display: flex;
  gap: 28px;
  margin-top: 60px;
}

.trust-row div {
  display: flex;
  flex-direction: column;
  padding-right: 28px;
  border-right: 1px solid var(--line);
}

.trust-row div:last-child {
  border-right: 0;
}

.trust-row strong {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
}

.trust-row span {
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-visual {
  position: relative;
  z-index: 2;
}

.browser-frame {
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
  backdrop-filter: blur(18px);
}

.browser-bar {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
}

.browser-bar > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b9c5be;
}

.browser-address {
  width: 55%;
  margin: 0 auto;
  padding: 5px 12px;
  border-radius: 8px;
  color: #7a867e;
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.68rem;
  text-align: center;
}

.media-slot {
  position: relative;
  overflow: hidden;
  border: 1px dashed rgba(15, 99, 68, 0.28);
  background:
    linear-gradient(135deg, rgba(37, 163, 107, 0.08), rgba(255,255,255,0.64)),
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(15, 99, 68, 0.025) 18px 36px);
}

.media-slot input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.media-slot img {
  width: 100%;
  height: 100%;
  display: none;
  object-fit: cover;
}

.media-slot.has-media img {
  display: block;
}

.media-slot.has-media .slot-placeholder {
  display: none;
}

.hero-media {
  aspect-ratio: 1.42;
  border-radius: 18px;
}

.slot-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}

.slot-placeholder strong {
  margin-top: 12px;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
}

.slot-placeholder span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
}

.placeholder-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--green-700);
  background: var(--white);
  box-shadow: 0 12px 25px rgba(8, 41, 30, 0.1);
  font-size: 1.7rem;
}

.upload-trigger,
.replace-media {
  margin-top: 18px;
  padding: 9px 14px;
  border: 0;
  border-radius: 9px;
  color: var(--white);
  background: var(--green-700);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
}

.replace-media {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: none;
  margin: 0;
  background: rgba(7, 29, 22, 0.88);
  backdrop-filter: blur(8px);
}

.has-media .replace-media {
  display: block;
}

.floating-card {
  position: absolute;
  display: flex;
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: 15px;
  background: rgba(255,255,255,0.88);
  box-shadow: 0 18px 40px rgba(8, 41, 30, 0.12);
  backdrop-filter: blur(15px);
}

.floating-card-one {
  right: -24px;
  bottom: -38px;
  min-width: 170px;
  flex-direction: column;
  padding: 18px;
}

.floating-card-one strong {
  color: var(--green-600);
  font-family: "Manrope", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.floating-card small,
.mini-label {
  color: var(--muted);
  font-size: 0.74rem;
}

.floating-card-two {
  left: -38px;
  top: 18%;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
}

.floating-card-two div {
  display: flex;
  flex-direction: column;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 6px rgba(37, 163, 107, 0.12);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.hero-glow-one {
  width: 400px;
  height: 400px;
  right: -180px;
  top: 120px;
  background: rgba(82, 201, 142, 0.13);
}

.hero-glow-two {
  width: 280px;
  height: 280px;
  left: -130px;
  bottom: 20px;
  background: rgba(200, 242, 220, 0.45);
}

.logo-strip {
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.55);
}

.logo-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.logo-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 90px;
  align-items: end;
}

.split-heading p,
.section-heading p,
.about-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 70px;
}

.stat-card {
  min-height: 300px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.55);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(8,41,30,0.08);
}

.stat-number,
.feature-index {
  color: var(--green-600);
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.stat-card h3 {
  margin-top: 80px;
}

.stat-card p {
  color: var(--muted);
}

.product-section {
  background: var(--white);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 72px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.feature-showcase {
  display: grid;
  gap: 110px;
}

.feature-row {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.feature-row-reverse .feature-copy {
  order: 2;
}

.feature-row-reverse .feature-media-wrap {
  order: 1;
}

.feature-copy h3 {
  margin-top: 12px;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
}

.feature-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.check-list {
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 13px 0;
  padding-left: 30px;
  font-weight: 600;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green-700);
  background: var(--green-100);
  font-size: 0.72rem;
}

.feature-media-wrap {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #f7faf8;
  box-shadow: 0 24px 60px rgba(8, 41, 30, 0.08);
}

.feature-media {
  aspect-ratio: 1.47;
  border-radius: 18px;
}

.workflow-section {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 10%, rgba(82,201,142,0.18), transparent 28%),
    var(--green-950);
}

.workflow-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

.section-kicker.light {
  color: var(--green-300);
}

.workflow-intro {
  position: sticky;
  top: 140px;
  align-self: start;
}

.workflow-intro p {
  max-width: 460px;
  margin: 24px 0 34px;
  color: rgba(255,255,255,0.66);
}

.workflow-steps {
  display: grid;
  gap: 16px;
}

.workflow-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.055);
}

.workflow-card > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--green-200);
  background: rgba(82,201,142,0.14);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.workflow-card p {
  margin-bottom: 0;
  color: rgba(255,255,255,0.62);
}

.outcomes-section {
  background: #eff7f2;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.outcome-card {
  grid-column: span 4;
  min-height: 270px;
  padding: 30px;
  border: 1px solid rgba(10,43,32,0.09);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.75);
}

.outcome-card.large {
  grid-column: span 8;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 40px;
}

.outcome-card.wide {
  grid-column: span 8;
}

.outcome-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 56px;
  border-radius: 14px;
  color: var(--green-700);
  background: var(--green-100);
  font-size: 1.35rem;
}

.outcome-card p {
  color: var(--muted);
}

.mini-chart {
  display: flex;
  align-items: end;
  gap: 10px;
  min-height: 200px;
  padding: 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f2fbf6, #e4f4eb);
}

.mini-chart span {
  flex: 1;
  border-radius: 8px 8px 4px 4px;
  background: var(--green-500);
  opacity: 0.18;
}

.mini-chart span:last-child {
  opacity: 1;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: center;
}

.about-media {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.portrait-media {
  aspect-ratio: 0.84;
  border-radius: 20px;
}

.about-copy p {
  max-width: 660px;
}

.founder-signoff {
  display: flex;
  flex-direction: column;
  margin-top: 32px;
}

.founder-signoff span {
  color: var(--muted);
}

.cta-section {
  padding-top: 40px;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  padding: 70px;
  border-radius: var(--radius-xl);
  color: var(--white);
  background: var(--green-800);
}

.cta-panel > * {
  position: relative;
  z-index: 2;
}

.cta-panel p {
  max-width: 520px;
  color: rgba(255,255,255,0.68);
}

.cta-glow {
  position: absolute;
  z-index: 0;
  width: 420px;
  height: 420px;
  left: -130px;
  bottom: -260px;
  border-radius: 50%;
  background: rgba(82,201,142,0.22);
  filter: blur(10px);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 11px;
  outline: none;
  padding: 14px 15px;
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.43);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green-300);
}

.full-width {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  color: rgba(255,255,255,0.5);
}

.form-note code {
  color: var(--green-200);
}

.footer {
  padding: 60px 0 38px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.7fr;
  gap: 50px;
  align-items: end;
}

.brand-footer {
  margin-bottom: 12px;
}

.footer p,
.footer-meta {
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-links {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: 0.12s;
}

.reveal-delay-two {
  transition-delay: 0.22s;
}

@media (max-width: 1000px) {
  .section {
    padding: 90px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 150px;
  }

  .hero-grid,
  .split-heading,
  .workflow-grid,
  .about-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 75px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-text {
    margin-inline: auto;
  }

  .hero-actions,
  .trust-row {
    justify-content: center;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .feature-row-reverse .feature-copy,
  .feature-row-reverse .feature-media-wrap {
    order: initial;
  }

  .workflow-grid {
    gap: 55px;
  }

  .workflow-intro {
    position: static;
  }

  .outcome-card,
  .outcome-card.large,
  .outcome-card.wide {
    grid-column: span 6;
  }

  .cta-panel {
    gap: 46px;
    padding: 50px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 26px), var(--container));
  }

  .nav-wrap {
    inset: 10px 0 auto;
  }

  .nav {
    min-height: 60px;
    padding: 8px 9px 8px 15px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 82px 13px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(250,250,245,0.97);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links > a {
    padding: 11px 12px;
  }

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

  .hero-actions,
  .trust-row,
  .logo-strip .container {
    flex-direction: column;
  }

  .trust-row {
    gap: 12px;
  }

  .trust-row div {
    border-right: 0;
    padding-right: 0;
  }

  .floating-card-two {
    left: 10px;
    top: 15%;
  }

  .floating-card-one {
    right: 8px;
  }

  .audience-list {
    justify-content: center;
    gap: 16px 24px;
  }

  .logo-strip {
    text-align: center;
  }

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

  .stat-card {
    min-height: 240px;
  }

  .stat-card h3 {
    margin-top: 46px;
  }

  .outcome-card,
  .outcome-card.large,
  .outcome-card.wide {
    grid-column: 1 / -1;
  }

  .outcome-card.large {
    grid-template-columns: 1fr;
  }

  .workflow-card {
    grid-template-columns: 48px 1fr;
    padding: 24px;
  }

  .workflow-card > span {
    width: 44px;
    height: 44px;
  }

  .about-grid {
    gap: 50px;
  }

  .cta-panel {
    padding: 34px 24px;
    border-radius: 24px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form label,
  .full-width,
  .form-note {
    grid-column: 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    grid-template-columns: repeat(4, auto);
    justify-content: center;
  }

  .footer-meta {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
