:root {
  --green: #58cc02;
  --green-2: #9cff57;
  --deep: #0e3124;
  --deep-2: #173f30;
  --sage: #dff5d5;
  --mint: #f2ffed;
  --cream: #fbfff7;
  --paper: rgba(255, 255, 255, .72);
  --border: rgba(37, 94, 54, .14);
  --shadow: 0 28px 90px rgba(15, 64, 39, .16);
  --soft-shadow: 0 16px 48px rgba(21, 76, 44, .12);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--deep);
  background:
    radial-gradient(circle at 15% 4%, rgba(155, 255, 90, .5), transparent 26rem),
    radial-gradient(circle at 92% 15%, rgba(88, 204, 2, .28), transparent 34rem),
    linear-gradient(135deg, #fbfff7 0%, #f5fff0 42%, #edf9e7 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(14, 49, 36, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 49, 36, .03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.35), transparent 76%);
  z-index: -2;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.ambient {
  position: fixed;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(30px);
  opacity: .5;
  z-index: -3;
  animation: breathe 9s ease-in-out infinite;
}

.ambient-one {
  width: 320px;
  height: 320px;
  left: -90px;
  top: 190px;
  background: rgba(88, 204, 2, .42);
}

.ambient-two {
  width: 420px;
  height: 420px;
  right: -160px;
  top: 520px;
  background: rgba(156, 255, 87, .38);
  animation-delay: -3s;
}

.cursor-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(88, 204, 2, .16), transparent 68%);
  pointer-events: none;
  translate: -50% -50%;
  z-index: 0;
  opacity: 0;
  transition: opacity .2s ease;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  width: min(1180px, calc(100% - 40px));
  margin: 14px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 12px 12px 18px;
  border: 1px solid rgba(255,255,255,.72);
  background: rgba(255, 255, 255, .58);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 50px rgba(23, 63, 48, .08);
  border-radius: 999px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 20px 70px rgba(23, 63, 48, .14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -.04em;
  font-size: 1.16rem;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--green-2), var(--green));
  box-shadow: 0 12px 26px rgba(88, 204, 2, .28);
}

.brand-mark svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: #0e3124;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(14, 49, 36, .76);
  font-weight: 700;
  font-size: .93rem;
}

.nav a {
  padding: 10px 13px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}

.nav-icon { display: none; }

.nav a:hover { background: rgba(88, 204, 2, .12); color: var(--deep); }

.header-cta {
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  background: var(--deep);
  color: white;
  box-shadow: 0 12px 24px rgba(14, 49, 36, .16);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 530px);
  gap: 54px;
  align-items: center;
  padding: 86px 0 48px;
  min-height: calc(100vh - 78px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  padding: 8px 14px;
  border: 1px solid rgba(88, 204, 2, .24);
  border-radius: 999px;
  background: rgba(255, 255, 255, .74);
  color: rgba(14, 49, 36, .78);
  font-weight: 900;
  font-size: .84rem;
  letter-spacing: .01em;
  box-shadow: 0 10px 34px rgba(23, 63, 48, .08);
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(88, 204, 2, .5);
  animation: pulse 2s infinite;
}

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

h1 {
  margin: 24px 0 22px;
  font-size: clamp(3.15rem, 7vw, 6.8rem);
  line-height: .92;
  letter-spacing: -.085em;
  max-width: 820px;
}

.hero-lead {
  max-width: 650px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.62;
  color: rgba(14, 49, 36, .72);
  margin-bottom: 32px;
}

.hero-actions, .trust-row { display: flex; flex-wrap: wrap; gap: 13px; align-items: center; }

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  font-weight: 950;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--deep), #24583f);
  box-shadow: 0 20px 42px rgba(14, 49, 36, .22);
}

.btn-ghost {
  color: var(--deep);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(14, 49, 36, .12);
}

.trust-row { margin-top: 30px; }

.trust-row div {
  min-width: 126px;
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(255,255,255,.68);
  box-shadow: var(--soft-shadow);
}

.trust-row strong, .trust-row span { display: block; }
.trust-row strong { font-size: 1.06rem; letter-spacing: -.03em; }
.trust-row span { color: rgba(14, 49, 36, .6); font-size: .88rem; }

.hero-visual {
  position: relative;
  min-height: 660px;
  display: grid;
  place-items: center;
}

.promo-shell {
  width: min(92vw, 410px);
  position: relative;
}

.promo-shell.is-video-pending {
  transform: scale(.965);
  transition: transform .34s ease;
}

.promo-shell.is-video-pending::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 70px;
  background: linear-gradient(145deg, rgba(88,204,2,.34), rgba(156,255,87,.16));
  filter: blur(26px);
  opacity: .72;
  transition: opacity .34s ease, filter .34s ease;
  z-index: -1;
}

.promo-shell.is-video-pending:hover,
.promo-shell.is-video-pending:focus-within {
  transform: scale(1);
}

.promo-shell.is-video-pending:hover::before,
.promo-shell.is-video-pending:focus-within::before {
  opacity: .96;
  filter: blur(18px);
}

.promo-phone {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  padding: 16px;
  border-radius: 58px;
  background: linear-gradient(145deg, #0b100d, #161c18);
  box-shadow: var(--shadow), inset 0 0 0 8px rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.14);
}

.promo-shell.is-video-pending .promo-phone {
  background: linear-gradient(145deg, rgba(20,74,42,.22), rgba(13,41,29,.1));
  border-color: rgba(88,204,2,.34);
  box-shadow:
    0 26px 80px rgba(88,204,2,.18),
    inset 0 0 0 7px rgba(156,255,87,.08),
    inset 0 0 0 1px rgba(255,255,255,.16);
  filter: blur(8px) saturate(1.18);
  opacity: .72;
  transition: filter .34s ease, opacity .34s ease, border-color .34s ease, box-shadow .34s ease;
}

.promo-shell.is-video-pending:hover .promo-phone,
.promo-shell.is-video-pending:focus-within .promo-phone {
  filter: blur(0) saturate(1);
  opacity: 1;
  border-color: rgba(156,255,87,.48);
  box-shadow: var(--shadow), inset 0 0 0 8px rgba(156,255,87,.08);
}

.promo-notch {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 112px;
  height: 26px;
  border-radius: 0 0 18px 18px;
  background: rgba(8, 11, 9, .95);
  z-index: 2;
}

.promo-shell.is-video-pending .promo-notch {
  background: linear-gradient(145deg, rgba(20,74,42,.22), rgba(13,41,29,.1));
  border: 1px solid rgba(88,204,2,.34);
  box-shadow:
    0 0 24px rgba(88,204,2,.18),
    inset 0 0 0 1px rgba(255,255,255,.16);
  backdrop-filter: blur(8px);
}

.promo-shell.is-video-pending:hover .promo-notch,
.promo-shell.is-video-pending:focus-within .promo-notch {
  background: linear-gradient(145deg, rgba(20,74,42,.22), rgba(13,41,29,.1));
  border-color: rgba(156,255,87,.48);
  box-shadow:
    0 0 24px rgba(88,204,2,.18),
    inset 0 0 0 1px rgba(255,255,255,.16);
}

.promo-video-placeholder {
  height: 100%;
  border-radius: 44px;
  border: 1px dashed rgba(156, 255, 87, .28);
  background:
    radial-gradient(circle at 20% 15%, rgba(156,255,87,.16), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 28px;
  color: rgba(255,255,255,.92);
  gap: 10px;
}

.promo-shell.is-video-pending .promo-video-placeholder {
  border-color: rgba(156,255,87,.24);
  background:
    radial-gradient(circle at 50% 45%, rgba(156,255,87,.14), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
  color: rgba(255,255,255,.72);
}

.promo-shell.is-video-pending .promo-video-placeholder > * {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
}

.promo-shell.is-video-pending:hover .promo-video-placeholder > *,
.promo-shell.is-video-pending:focus-within .promo-video-placeholder > * {
  opacity: 1;
  transform: translateY(0);
}

.play-badge {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  background: linear-gradient(135deg, rgba(156,255,87,.95), rgba(88,204,2,.92));
  color: var(--deep);
  box-shadow: 0 16px 40px rgba(88,204,2,.28);
  margin-bottom: 6px;
}

.promo-video-placeholder strong {
  font-size: 1.5rem;
  letter-spacing: -.04em;
}

.promo-video-placeholder span,
.promo-video-placeholder small {
  color: rgba(255,255,255,.68);
  line-height: 1.5;
}

.leaf {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: rgba(14, 49, 36, .5);
  background: rgba(255,255,255,.42);
  border: 1px solid rgba(255,255,255,.6);
  backdrop-filter: blur(10px);
  box-shadow: var(--soft-shadow);
}

.leaf-a { width: 84px; height: 84px; top: 42px; right: 32px; animation: drift 7s ease-in-out infinite; }
.leaf-b { width: 42px; height: 42px; left: 52px; top: 130px; animation: drift 8s ease-in-out infinite reverse; }

.floating-card {
  position: absolute;
  z-index: 3;
  padding: 15px 18px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.74);
  background: rgba(255,255,255,.68);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  min-width: 180px;
  animation: drift 6s ease-in-out infinite;
}

.floating-card span { display: block; color: rgba(14, 49, 36, .56); font-size: .82rem; font-weight: 800; }
.floating-card strong { display: block; margin-top: 3px; letter-spacing: -.04em; }
.card-water { left: 0; bottom: 160px; }
.card-ai { right: -10px; top: 150px; animation-delay: -2s; }

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.58);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  margin-bottom: 96px;
}

.metrics article {
  padding: 25px 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.74), rgba(255,255,255,.38));
  border: 1px solid rgba(14, 49, 36, .07);
}

.metrics strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
  letter-spacing: -.08em;
}

.metrics span { display: block; margin-top: 9px; color: rgba(14, 49, 36, .62); line-height: 1.35; }

.split-section, .solution, .demo, .audience, .tech, .pricing, .cta { padding: 30px 0 104px; }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading.centered { text-align: center; margin-inline: auto; }

h2 {
  margin: 18px 0 0;
  font-size: clamp(2.15rem, 4vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -.07em;
}

.section-heading p, .demo-copy p, .tech-card p, .cta-card p {
  color: rgba(14, 49, 36, .68);
  line-height: 1.7;
  font-size: 1.05rem;
}

.problem-grid, .features-grid, .audience-grid, .pricing-grid {
  display: grid;
  gap: 18px;
}

.problem-grid { grid-template-columns: repeat(3, 1fr); }
.features-grid { grid-template-columns: repeat(3, 1fr); }
.audience-grid { grid-template-columns: repeat(3, 1fr); }
.pricing-grid { grid-template-columns: repeat(2, minmax(0, 430px)); justify-content: center; }

.problem-card, .feature-card, .audience-card, .price-card, .tech-card, .cta-card {
  border: 1px solid rgba(255,255,255,.72);
  background: rgba(255,255,255,.62);
  backdrop-filter: blur(18px);
  box-shadow: var(--soft-shadow);
}

.problem-card, .feature-card, .audience-card, .price-card {
  padding: 27px;
  border-radius: var(--radius-lg);
}

.problem-card h3, .feature-card h3, .audience-card h3 {
  margin: 18px 0 10px;
  letter-spacing: -.04em;
  font-size: 1.32rem;
}

.problem-card p, .feature-card p, .audience-card p, .price-card p {
  color: rgba(14, 49, 36, .66);
  line-height: 1.62;
  margin-bottom: 0;
}

.icon-bubble, .feature-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(156,255,87,.85), rgba(88,204,2,.86));
  box-shadow: 0 12px 28px rgba(88, 204, 2, .2);
  font-weight: 950;
}

.feature-card { min-height: 245px; position: relative; overflow: hidden; }
.feature-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -44px;
  top: -46px;
  border-radius: 50%;
  background: rgba(88, 204, 2, .1);
}

.feature-card.highlight {
  background: linear-gradient(145deg, rgba(88, 204, 2, .92), rgba(156, 255, 87, .78));
  color: var(--deep);
}

.feature-card.highlight p { color: rgba(14, 49, 36, .72); }
.feature-card.highlight .feature-icon { background: white; }

.demo {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 40px;
  align-items: start;
  overflow: hidden;
}

.demo-copy { max-width: 520px; }

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 10px;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: rgba(14,49,36,.75);
  font-weight: 750;
}

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

.demo-carousel {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  padding: 22px 64px 58px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(255,255,255,.68), rgba(223,245,213,.58));
  border: 1px solid rgba(255,255,255,.74);
  box-shadow: var(--shadow);
}

.carousel-viewport {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 18px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 2px 10px;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar { display: none; }

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(14,49,36,.08);
  background: rgba(255,255,255,.9);
  color: var(--deep);
  box-shadow: 0 14px 30px rgba(14,49,36,.10);
  z-index: 2;
  font-size: 1.9rem;
  line-height: 1;
}

.carousel-btn:hover { background: white; }
.carousel-btn-prev { left: 12px; }
.carousel-btn-next { right: 12px; }
.carousel-btn:disabled { opacity: .45; cursor: default; }

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(14,49,36,.18);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, width .2s ease;
}

.carousel-dots button.is-active {
  width: 28px;
  background: var(--green);
}

.screen-card {
  position: relative;
  flex: 0 0 clamp(210px, 32%, 280px);
  scroll-snap-align: start;
  margin: 0;
  padding: 14px;
  border-radius: 28px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(14,49,36,.08);
  box-shadow: 0 16px 42px rgba(14,49,36,.10);
}

.screen-visual {
  position: relative;
  aspect-ratio: 626 / 1280;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(242,255,237,1), rgba(255,255,255,1));
  box-shadow: inset 0 0 0 1px rgba(14,49,36,.06), 0 18px 40px rgba(14,49,36,.09);
  overflow: hidden;
}

.screen-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 18px;
}

.screen-tag {
  position: absolute;
  left: 24px;
  top: 24px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(14,49,36,.84);
  color: white;
  font-size: .73rem;
  font-weight: 900;
  letter-spacing: .01em;
}

.screen-card figcaption {
  padding: 16px 4px 4px;
}

.screen-card figcaption strong {
  display: block;
  letter-spacing: -.04em;
  font-size: 1.06rem;
  margin-bottom: 6px;
}

.screen-card figcaption span {
  display: block;
  color: rgba(14,49,36,.62);
  line-height: 1.5;
  font-size: .94rem;
}

.audience-card {
  min-height: 290px;
  display: flex;
  flex-direction: column;
}

.audience-card span {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(88, 204, 2, .14);
  font-weight: 950;
}

.audience-card b { display: block; margin-top: auto; padding-top: 24px; }

.tech-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 30px;
  align-items: center;
  padding: 36px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255,255,255,.76), rgba(255,255,255,.54)),
    url("assets/soft-green-bg.webp") center/cover;
}

.stack-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.stack-list span {
  padding: 14px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(14, 49, 36, .09);
  box-shadow: 0 10px 30px rgba(14, 49, 36, .08);
  font-weight: 900;
}

.price-card {
  position: relative;
  background: rgba(255,255,255,.74);
}

.price-card.premium {
  background: linear-gradient(145deg, rgba(14,49,36,.96), rgba(31,82,57,.92));
  color: white;
  box-shadow: 0 28px 90px rgba(14,49,36,.25);
}

.price-card.premium p, .price-card.premium li { color: rgba(255,255,255,.76); }

.popular {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--deep);
  background: var(--green-2);
  font-weight: 950;
  font-size: .82rem;
}

.price-top { margin-bottom: 18px; }
.price-top h3 { margin-bottom: 8px; letter-spacing: -.04em; }
.price-top strong { font-size: 2.4rem; letter-spacing: -.07em; }
.price-top small { font-size: .96rem; letter-spacing: 0; opacity: .72; }

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.price-card li { color: rgba(14, 49, 36, .7); line-height: 1.45; }
.price-card li::before { content: "•"; color: var(--green); font-weight: 950; margin-right: 8px; }

.cta-card {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 34px;
  align-items: center;
  border-radius: 42px;
  padding: 42px;
  color: white;
  background:
    radial-gradient(circle at 16% 0%, rgba(156,255,87,.35), transparent 24rem),
    linear-gradient(135deg, #0e3124, #1d5a3c);
  box-shadow: 0 35px 120px rgba(14,49,36,.24);
  overflow: hidden;
  position: relative;
}

.cta-card::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  bottom: -110px;
  border-radius: 50%;
  border: 38px solid rgba(156,255,87,.16);
}

.cta-card .eyebrow { color: white; background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.18); }
.cta-card p { color: rgba(255,255,255,.78); }

.lead-form {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 30px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(20px);
}

.lead-form label { display: grid; gap: 8px; color: rgba(255,255,255,.72); font-weight: 800; }
.lead-form input {
  width: 100%;
  border: 1px solid rgba(255,255,255,.22);
  outline: none;
  padding: 17px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  color: var(--deep);
}

.lead-form .btn-primary { background: var(--green); color: var(--deep); }

.hp-field {
  display: none;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 0 0 34px;
  color: rgba(14,49,36,.62);
}

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

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

@keyframes pulse {
  70% { box-shadow: 0 0 0 10px rgba(88, 204, 2, 0); }
  100% { box-shadow: 0 0 0 0 rgba(88, 204, 2, 0); }
}

@keyframes breathe { 50% { transform: scale(1.16); } }
@keyframes drift { 50% { transform: translateY(-13px) translateX(7px); } }

@media (max-width: 980px) {
  .nav { display: none; }
  .hero, .demo, .tech-card, .cta-card { grid-template-columns: 1fr; }
  .hero { gap: 20px; padding-top: 64px; }
  .hero-visual { min-height: 600px; }
  .metrics, .problem-grid, .features-grid, .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-card { padding: 34px; }
}

@media (max-width: 680px) {
  .section-shell, .site-header { width: min(100% - 24px, 1180px); }
  .site-header {
    display: grid;
    grid-template-columns: minmax(108px, auto) minmax(0, 1fr);
    align-items: center;
    border-radius: 24px;
    top: 8px;
    gap: 8px;
    padding: 9px;
  }
  .brand { font-size: 1.04rem; gap: 8px; }
  .brand-mark { width: 34px; height: 34px; border-radius: 13px; }
  .brand-mark svg { width: 22px; height: 22px; }
  .nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
    font-size: 0;
    min-width: 0;
  }
  .nav a {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 1px solid rgba(88, 204, 2, .2);
    background: linear-gradient(145deg, rgba(255,255,255,.64), rgba(242,255,237,.42));
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.36), 0 8px 18px rgba(14,49,36,.05);
  }
  .nav a span { display: none; }
  .nav-icon {
    display: block;
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--deep);
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .nav a:hover .nav-icon { stroke: #1b5b35; }
  .header-cta { display: none; }
  h1 { font-size: clamp(3rem, 16vw, 4.4rem); }
  .hero { padding-top: 46px; }
  .hero-visual.video-pending { display: none; }
  .promo-shell { width: min(82vw, 330px); }
  .promo-shell.is-video-pending { display: none; }
  .promo-phone { border-radius: 46px; padding: 12px; }
  .promo-video-placeholder { border-radius: 34px; padding: 28px 18px; }
  .promo-video-placeholder strong { font-size: 1.24rem; }
  .floating-card { display: none; }
  .metrics, .problem-grid, .features-grid, .audience-grid, .pricing-grid { grid-template-columns: 1fr; }
  .demo-carousel { padding: 18px 18px 54px; }
  .carousel-btn { display: none; }
  .screen-card { flex-basis: min(260px, calc(100vw - 72px)); }
  .footer { flex-direction: column; align-items: flex-start; }
  .split-section, .solution, .demo, .audience, .tech, .pricing, .cta { padding-bottom: 70px; }
}

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


.form-status {
  margin: 0;
  min-height: 20px;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  font-weight: 700;
}
.lead-form button:disabled {
  opacity: .65;
  cursor: wait;
}
