:root {
  color-scheme: dark;
  --bg: #003d27;
  --bg-deep: #002f21;
  --panel: #064b34;
  --panel-strong: #075f3e;
  --surface: #f6fff2;
  --surface-soft: #e8ffdd;
  --surface-line: #bdebb4;
  --ink: #07120e;
  --muted: #c8f7d6;
  --muted-strong: #6f8c7b;
  --brand: #05a864;
  --brand-dark: #008e53;
  --accent: #d7ff72;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(0, 18, 11, 0.34);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1180px;
  font-family:
    "Plus Jakarta Sans",
    "Segoe UI",
    system-ui,
    -apple-system,
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 84% 18%, rgba(5, 168, 100, 0.2), transparent 30rem),
    radial-gradient(circle at 8% 6%, rgba(215, 255, 114, 0.13), transparent 24rem),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  color: var(--white);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
select {
  cursor: pointer;
}

::selection {
  color: var(--ink);
  background: var(--accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(calc(100% - 32px), var(--max));
  margin: 18px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(0, 61, 39, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 42px rgba(0, 18, 11, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  box-shadow: inset 0 -8px 18px rgba(0, 91, 53, 0.28);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.site-nav a,
.header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.header-cta {
  color: var(--ink);
  background: var(--accent);
}

.header-cta:hover,
.header-cta:focus-visible,
.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--white);
}

.section-shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.hero > *,
.section-heading > *,
.product-section > *,
.contact-section > *,
.main-card > *,
.growth-grid > * {
  min-width: 0;
}

.hero {
  min-height: calc(100dvh - 96px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
  align-items: center;
  gap: 64px;
  padding: 74px 0 64px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  font-size: 24px;
  line-height: 1.16;
}

.hero-lede,
.product-copy > p,
.contact-section > div > p {
  max-width: 620px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

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

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn-primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(5, 168, 100, 0.22);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 590px;
  padding: 70px 32px 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(246, 255, 242, 0.97), rgba(221, 255, 206, 0.94)),
    var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.browser-bar {
  position: absolute;
  inset: 0 0 auto 0;
  display: flex;
  align-items: center;
  gap: 9px;
  height: 56px;
  padding: 0 22px;
  background: rgba(255, 255, 255, 0.74);
  border-bottom: 1px solid #d7ead0;
}

.browser-bar span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
}

.browser-bar span:nth-child(1) {
  background: #ff6b6b;
}

.browser-bar span:nth-child(2) {
  background: #fbbf24;
}

.browser-bar span:nth-child(3) {
  background: #22c55e;
}

.browser-bar p {
  width: min(56%, 360px);
  margin: 0 0 0 18px;
  padding: 8px 18px;
  border: 1px solid #d9e8d2;
  border-radius: 999px;
  color: #587065;
  background: var(--white);
  font-size: 14px;
}

.growth-card {
  border: 1px solid var(--surface-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 40px rgba(0, 61, 39, 0.08);
}

.main-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: end;
  gap: 24px;
  padding: 30px;
}

.metric-label,
.plan-label {
  margin: 0 0 10px;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.growth-card strong {
  display: block;
  font-size: 48px;
  line-height: 1;
}

.growth-card span {
  color: var(--muted-strong);
  font-weight: 800;
}

.sparkline {
  height: 180px;
  display: flex;
  align-items: end;
  gap: 12px;
}

.sparkline i {
  flex: 1;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--accent), var(--brand));
}

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

.growth-grid .growth-card {
  padding: 24px;
}

.audit-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.audit-strip span {
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--panel);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
}

.trust-strip {
  width: min(calc(100% - 32px), var(--max));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
}

.trust-strip div {
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 6px;
  font-size: 24px;
}

.trust-strip span {
  color: var(--muted);
}

.services,
.product-section,
.process,
.pricing,
.contact-section {
  padding: 112px 0 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: end;
  gap: 50px;
  margin-bottom: 34px;
}

.section-heading .eyebrow {
  margin-bottom: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

.service-card,
.price-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  min-height: 320px;
}

.service-card.featured,
.price-card.preferred {
  background: var(--surface);
  color: var(--ink);
}

.service-card p,
.timeline p,
.price-card p {
  color: var(--muted);
  line-height: 1.6;
}

.service-card.featured p,
.price-card.preferred p,
.service-card.featured a {
  color: #52675b;
}

.service-card h3,
.price-card h3 {
  margin-bottom: 14px;
}

.service-card a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--accent);
  font-weight: 900;
}

.icon-box {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 16px;
  background: var(--brand);
}

.icon-box svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.product-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 44px;
}

.product-copy {
  padding: 48px;
  border-radius: 32px;
  background: var(--surface);
  color: var(--ink);
}

.product-copy .eyebrow {
  color: var(--brand-dark);
}

.product-copy h2 {
  font-size: clamp(34px, 4vw, 58px);
}

.product-copy > p {
  color: #536b5d;
}

.product-copy .btn-secondary {
  border-color: #bdebb4;
  background: #ffffff;
  color: var(--brand-dark);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  color: #31473a;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  line-height: 1.5;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 6px;
  background: var(--brand);
}

.product-shot {
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.product-shot img {
  border-radius: 22px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
}

.timeline article {
  min-height: 285px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
}

.timeline span {
  display: inline-flex;
  margin-bottom: 64px;
  color: var(--accent);
  font-weight: 900;
}

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

.price-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  align-items: flex-start;
}

.price-card strong {
  margin: auto 0 24px;
  font-size: 30px;
}

.price-card .btn {
  width: 100%;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  padding-bottom: 96px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 28px;
  background: var(--surface);
  color: var(--ink);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #264536;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cce8c4;
  border-radius: 16px;
  padding: 15px 16px;
  background: #ffffff;
  color: var(--ink);
  outline: none;
}

.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible,
.btn:focus-visible,
.nav-toggle:focus-visible,
.site-nav a:focus-visible,
.header-cta:focus-visible {
  outline: 3px solid rgba(215, 255, 114, 0.72);
  outline-offset: 3px;
}

.contact-form button {
  border: 0;
}

.form-note {
  margin: 0;
  color: #66756e;
  font-size: 14px;
  line-height: 1.5;
}

.site-footer {
  width: min(calc(100% - 32px), var(--max));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto 24px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

.site-footer div {
  display: flex;
  gap: 16px;
  color: var(--muted);
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .nav-open .site-nav {
    position: fixed;
    inset: 86px 16px auto;
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    background: rgba(0, 47, 33, 0.96);
    box-shadow: var(--shadow);
  }

  .hero,
  .product-section,
  .contact-section,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 36px;
    padding-top: 54px;
  }

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

  .trust-strip,
  .service-grid,
  .timeline,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-grid {
    grid-auto-rows: auto;
  }

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

@media (max-width: 640px) {
  .site-header {
    width: min(calc(100% - 20px), var(--max));
    margin-top: 10px;
  }

  .section-shell,
  .trust-strip,
  .site-footer {
    width: min(calc(100% - 20px), var(--max));
  }

  h1 {
    font-size: clamp(38px, 10.5vw, 44px);
    line-height: 1.04;
  }

  h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .hero-copy,
  .hero-visual {
    width: 100%;
    max-width: 350px;
  }

  .browser-bar p {
    flex: 1;
    width: auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero-lede,
  .product-copy > p,
  .contact-section > div > p {
    font-size: 16px;
  }

  .hero-actions,
  .site-footer div {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .site-footer div a {
    width: 100%;
  }

  .hero-visual {
    min-height: auto;
    padding: 68px 18px 20px;
    border-radius: 26px;
  }

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

  .sparkline {
    height: 130px;
  }

  .growth-grid,
  .trust-strip,
  .service-grid,
  .timeline,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .services,
  .product-section,
  .process,
  .pricing,
  .contact-section {
    padding-top: 82px;
  }

  .product-copy,
  .contact-form {
    padding: 24px;
    border-radius: 24px;
  }

  .timeline span {
    margin-bottom: 28px;
  }

  .timeline article,
  .service-card,
  .price-card {
    min-height: auto;
  }
}

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