:root {
  --bg: #f3f7ef;
  --bg-strong: #e5efd7;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --surface-soft: #f7fbf2;
  --border: rgba(34, 62, 23, 0.12);
  --text: #213022;
  --muted: #5f6f5f;
  --green: #4d7c34;
  --green-dark: #2e5122;
  --green-soft: #dceac9;
  --green-accent: #7fb24d;
  --shadow: 0 22px 60px rgba(43, 71, 29, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --shell: min(1180px, calc(100% - 32px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 10%, rgba(206, 228, 164, 0.48), transparent 24%),
    radial-gradient(circle at 88% 14%, rgba(127, 178, 77, 0.22), transparent 23%),
    radial-gradient(circle at 74% 82%, rgba(87, 138, 49, 0.16), transparent 25%),
    linear-gradient(135deg, rgba(214, 233, 181, 0.52) 0%, rgba(255, 255, 255, 0.18) 34%, rgba(188, 216, 144, 0.24) 68%, rgba(255, 255, 255, 0.1) 100%),
    linear-gradient(180deg, #fcfef9 0%, #eef5e7 52%, #eaf1e0 100%);
  background-attachment: fixed;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  opacity: 0.82;
  background:
    linear-gradient(125deg, rgba(220, 236, 191, 0.5) 0 16%, transparent 16% 42%, rgba(255, 255, 255, 0.46) 42% 54%, transparent 54% 100%),
    linear-gradient(180deg, rgba(125, 164, 83, 0.08), transparent 34%, rgba(125, 164, 83, 0.06) 100%);
}

body::after {
  opacity: 0.34;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.34), transparent 18%),
    repeating-radial-gradient(circle at 18% 24%, rgba(95, 134, 57, 0.09) 0 2px, transparent 2px 22px),
    repeating-radial-gradient(circle at 82% 72%, rgba(95, 134, 57, 0.07) 0 2px, transparent 2px 28px);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.35));
}

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

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

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

.shell {
  width: var(--shell);
  margin: 0 auto;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 252, 247, 0.88);
  border-bottom: 1px solid rgba(34, 62, 23, 0.08);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 16px;
  background: #fff;
  padding: 2px;
  box-shadow: var(--shadow);
}

.brand strong {
  display: block;
  font-size: 1rem;
}

.brand span {
  color: var(--muted);
  font-size: 0.9rem;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.nav-toggle {
  display: none;
  appearance: none;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(77, 124, 52, 0.16);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--green-dark);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header__inner.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header__inner.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header__inner.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav > a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
}

.site-nav > a[aria-current="page"] {
  color: var(--green-dark);
  background: rgba(77, 124, 52, 0.08);
}

.button,
.footer-link-button {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 18px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.footer-link-button:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: linear-gradient(180deg, var(--green-accent), var(--green));
  color: #fff;
  box-shadow: 0 14px 34px rgba(77, 124, 52, 0.22);
}

.button--secondary {
  background: #fff;
  color: var(--green-dark);
  border-color: rgba(77, 124, 52, 0.18);
}

.button--ghost,
.footer-link-button {
  background: rgba(77, 124, 52, 0.06);
  color: var(--green-dark);
  border-color: rgba(77, 124, 52, 0.14);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero {
  padding: 48px 0 28px;
}

.hero--home {
  padding-top: 68px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.hero__grid--balanced {
  grid-template-columns: 1fr 0.92fr;
}

.hero__copy h1 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 7vw, 4.9rem);
  line-height: 0.98;
}

.hero__lede {
  margin: 22px 0 26px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
  max-width: 650px;
}

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

.hero__chips span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  color: var(--muted);
}

.hero__visual {
  display: grid;
  gap: 18px;
}

.hero__image {
  width: min(440px, 100%);
  justify-self: end;
  filter: drop-shadow(0 20px 48px rgba(43, 71, 29, 0.14));
}

.hero-card,
.panel,
.metric-card,
.product-preview,
.icon-panel,
.catalog-group,
.catalog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-card {
  border-radius: var(--radius-lg);
  padding: 28px;
}

.hero-card--highlight {
  background:
    linear-gradient(135deg, rgba(77, 124, 52, 0.12), rgba(255, 255, 255, 0.94)),
    var(--surface);
}

.hero-card--stacked {
  min-height: 100%;
}

.hero-card__label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(77, 124, 52, 0.1);
  color: var(--green-dark);
  font-weight: 800;
}

.hero-card h2,
.section-heading h2,
.panel h2,
.site-footer h2,
.fs-modal h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  line-height: 1.08;
}

.hero-card p,
.panel p,
.site-footer p,
.catalog-card p,
.product-preview p,
.icon-panel p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-card__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 18px auto 44px;
}

.metric-card {
  border-radius: var(--radius-md);
  padding: 22px;
}

.metric-card strong {
  display: block;
  color: var(--green-dark);
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.metric-card span {
  color: var(--muted);
  line-height: 1.7;
}

.section,
.split-section,
.section-grid {
  margin-bottom: 42px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.section-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.panel {
  border-radius: var(--radius-lg);
  padding: 28px;
}

.panel--soft {
  background: linear-gradient(180deg, #fcfff9, #f2f8eb);
}

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

.check-list li {
  padding-left: 28px;
  position: relative;
  color: var(--muted);
  line-height: 1.75;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green-accent);
  box-shadow: 0 0 0 4px rgba(127, 178, 77, 0.18);
}

.card-grid {
  display: grid;
  gap: 18px;
}

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

.product-preview {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.product-preview img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #fff;
}

.product-preview__body {
  padding: 22px;
}

.product-preview__body h3,
.icon-panel h3,
.catalog-group h3,
.catalog-card h4 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.text-link {
  color: var(--green-dark);
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
}

.split-section--reverse {
  grid-template-columns: 1.05fr 0.95fr;
}

.panel--image {
  padding: 0;
  overflow: hidden;
}

.panel--image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.icon-panel {
  border-radius: var(--radius-md);
  padding: 22px;
}

.icon-panel img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 14px;
}

.site-footer {
  padding: 30px 0 36px;
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 24px;
  flex-wrap: wrap;
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(126, 164, 83, 0.08), transparent 28%),
    #1f3317;
  color: #f7fbf2;
}

.site-footer p {
  color: rgba(247, 251, 242, 0.78);
  max-width: 520px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.footer-links a,
.footer-link-button {
  color: rgba(247, 251, 242, 0.92);
}

.footer-link-button {
  padding-inline: 0;
  background: transparent;
  border: 0;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.filter-chip {
  appearance: none;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.75);
  color: var(--muted);
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 700;
}

.filter-chip.is-active {
  background: var(--green);
  color: #fff;
  border-color: transparent;
}

.catalog-groups {
  display: grid;
  gap: 22px;
}

.catalog-group {
  border-radius: var(--radius-lg);
  padding: 24px;
}

.catalog-group__header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.catalog-group__header p {
  margin: 0;
}

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

.catalog-card {
  border-radius: var(--radius-md);
  padding: 20px;
}

.catalog-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.catalog-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.catalog-card[data-has-video="false"] .catalog-card__video {
  opacity: 0.55;
}

.p2-hero {
  padding: 32px 0 18px;
}

.p2-hero__frame {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 0;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(32, 57, 91, 0.09);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0 44%, rgba(255, 255, 255, 0.28) 68%, rgba(255, 255, 255, 0.08) 100%),
    linear-gradient(180deg, rgba(219, 233, 188, 0.3), rgba(255, 255, 255, 0.06)),
    url("/images/products/field-case-study.jpg") center center / cover no-repeat;
  box-shadow: 0 28px 80px rgba(27, 44, 17, 0.15);
}

.p2-hero__overlay {
  padding: 54px 48px 50px;
}

.p2-hero__brand-tag {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 800;
  color: #22395a;
  letter-spacing: -0.03em;
}

.p2-hero h1 {
  margin: 12px 0 12px;
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 7vw, 5.45rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  color: #182a42;
}

.p2-hero__service-line,
.p2-hero__location-line,
.p2-hero__tech-line,
.p2-hero__fineprint {
  margin: 0;
}

.p2-hero__service-line {
  font-size: 1.45rem;
  font-weight: 700;
  color: #22395a;
}

.p2-hero__location-line,
.p2-hero__tech-line {
  margin-top: 8px;
  color: #44556d;
  font-size: 1.05rem;
}

.p2-hero__fineprint {
  margin-top: 18px;
  max-width: 38rem;
  color: #506174;
  line-height: 1.75;
}

.p2-hero__overlay .button-row {
  margin-top: 28px;
}

.p2-hero__media {
  position: relative;
  min-height: 640px;
  padding: 44px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.p2-hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 26% 26%, rgba(255, 255, 255, 0.86), transparent 30%),
    linear-gradient(180deg, rgba(189, 215, 233, 0.46), rgba(164, 199, 103, 0.34));
}

.p2-hero__highlight,
.p2-feature-panel,
.p2-tech-card,
.p2-walkthrough {
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(32, 57, 91, 0.08);
  box-shadow: 0 22px 56px rgba(28, 45, 17, 0.12);
}

.p2-hero__highlight {
  position: absolute;
  top: 38px;
  right: 40px;
  z-index: 1;
  width: min(440px, calc(100% - 80px));
  padding: 28px 28px 30px;
}

.p2-hero__chip {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(77, 124, 52, 0.1);
  color: var(--green-dark);
  font-weight: 800;
}

.p2-hero__highlight h2,
.p2-feature-panel h2,
.p2-walkthrough h2,
.p3-hero h1,
.p3-visual-card h2,
.p3-section-head h2 {
  margin: 14px 0 0;
  font-family: "Playfair Display", serif;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.p2-hero__highlight h2 {
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  color: #182a42;
}

.p2-hero__highlight p,
.p2-feature-panel p,
.p2-tech-card p,
.p2-walkthrough p {
  color: #5b6a78;
  line-height: 1.75;
}

.p2-hero__product-stack {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  gap: 6px;
  width: min(560px, 100%);
}

.p2-hero__product-stack img:nth-child(1) {
  transform: translateY(32px) rotate(-4deg);
}

.p2-hero__product-stack img:nth-child(2) {
  transform: scale(1.08);
}

.p2-hero__product-stack img:nth-child(3) {
  transform: translateY(28px) rotate(4deg);
}

.p2-feature-grid,
.p2-tech-grid {
  display: grid;
  gap: 24px;
  margin-top: 26px;
}

.p2-feature-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(240px, 0.88fr);
  gap: 26px;
  padding: 30px;
}

.p2-feature-panel--green {
  background:
    linear-gradient(135deg, rgba(220, 234, 201, 0.88), rgba(255, 255, 255, 0.94)),
    rgba(255, 255, 255, 0.96);
}

.p2-feature-panel h2,
.p2-walkthrough h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  color: #182a42;
}

.p2-feature-panel__visual,
.p2-walkthrough__media {
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.5), transparent 24%),
    linear-gradient(180deg, #edf4df, #d5e4bb);
  display: grid;
  place-items: center;
  min-height: 260px;
}

.p2-feature-panel__visual img {
  width: min(320px, 94%);
}

.p2-turtle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
}

.p2-turtle-grid img {
  background: rgba(255, 255, 255, 0.62);
  border-radius: 22px;
  padding: 10px;
}

.p2-bullet-list {
  margin: 20px 0 0;
  padding-left: 18px;
  color: #43556b;
  line-height: 1.8;
}

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

.p2-tech-card {
  padding: 28px;
}

.p2-tech-card h3 {
  margin: 0;
  font-size: 1.65rem;
  line-height: 1.08;
  color: #182a42;
}

.p2-walkthrough {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.92fr);
  gap: 26px;
  padding: 30px;
  margin: 26px auto 36px;
}

.p2-walkthrough__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p3-page {
  padding: 34px 0 42px;
}

.p3-page .shell {
  display: grid;
  gap: 24px;
}

.p3-hero,
.p3-catalog-shell {
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(10, 18, 31, 0.96), rgba(15, 25, 38, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 80px rgba(6, 10, 18, 0.3);
}

.p3-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 20px;
  padding: 28px;
  color: #f5f8fc;
}

.p3-hero .eyebrow,
.p3-catalog-shell .eyebrow {
  color: #f0c766;
}

.p3-hero h1 {
  font-size: clamp(3rem, 6vw, 5.35rem);
  color: #f8fbff;
}

.p3-hero p,
.p3-stat span,
.p3-section-head p,
.p3-catalog-shell .catalog-group__header p,
.p3-catalog-shell .catalog-card p,
.p3-catalog-shell .catalog-card ul {
  color: rgba(221, 233, 244, 0.78);
}

.p3-visual-card,
.p3-stat,
.p3-catalog-shell .catalog-group,
.p3-catalog-shell .catalog-card {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.p3-visual-card {
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.p3-visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 22%, rgba(240, 199, 102, 0.14), transparent 24%),
    linear-gradient(135deg, rgba(107, 200, 255, 0.08), transparent 45%);
}

.p3-visual-card > * {
  position: relative;
  z-index: 1;
}

.p3-visual-card__tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 10px 16px;
  border-radius: 999px;
  color: #f0c766;
  border: 1px solid rgba(240, 199, 102, 0.24);
  background: rgba(240, 199, 102, 0.08);
  font-weight: 800;
}

.p3-visual-card h2,
.p3-section-head h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  color: #f8fbff;
}

.p3-status-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.p3-stat {
  padding: 18px;
}

.p3-stat strong {
  display: block;
  margin-bottom: 6px;
  color: #f0c766;
  font-size: 1.9rem;
}

.p3-catalog-shell {
  padding: 24px;
  color: #f5f8fc;
}

.p3-section-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  margin-bottom: 18px;
}

.p3-catalog-shell .filter-row {
  margin: 8px 0 22px;
}

.p3-catalog-shell .filter-chip {
  border-color: rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.03);
  color: #f5f8fc;
}

.p3-catalog-shell .filter-chip.is-active {
  background: rgba(240, 199, 102, 0.14);
  border-color: rgba(240, 199, 102, 0.48);
  color: #f0c766;
}

.p3-catalog-shell .catalog-group {
  padding: 22px;
}

.p3-catalog-shell .catalog-group h3,
.p3-catalog-shell .catalog-card h4 {
  color: #f8fbff;
}

.p3-catalog-shell .catalog-card__actions .button--secondary {
  background: linear-gradient(180deg, rgba(240, 199, 102, 0.18), rgba(240, 199, 102, 0.1));
  color: #f8fbff;
  border-color: rgba(240, 199, 102, 0.28);
}

.p3-catalog-shell .catalog-card__actions .button--ghost,
.p3-catalog-shell .catalog-card__actions .button--secondary {
  border-color: rgba(255, 255, 255, 0.12);
}

.fs-modal-overlay {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(22, 34, 16, 0.48);
  backdrop-filter: blur(8px);
  padding: 18px;
  z-index: 40;
}

.fs-modal-overlay[hidden] {
  display: none !important;
}

.fs-modal {
  width: min(760px, 100%);
  max-height: calc(100vh - 36px);
  overflow: auto;
  border-radius: 26px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 36px 90px rgba(24, 39, 17, 0.24);
}

.fs-modal--wide {
  width: min(1080px, 100%);
}

.video-embed-shell {
  overflow: hidden;
  border-radius: 22px;
  background: #0d172a;
  box-shadow: 0 24px 60px rgba(8, 16, 30, 0.24);
}

.video-embed-frame {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.fs-modal__header,
.fs-modal__body {
  padding: 24px;
}

.fs-modal__header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
  border-bottom: 1px solid var(--border);
}

.fs-modal__close {
  appearance: none;
  border: 1px solid var(--border);
  background: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}

.modal-intro {
  margin-top: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

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

.field span {
  font-weight: 700;
  color: var(--green-dark);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--surface-soft);
  color: var(--text);
  border-radius: 16px;
  padding: 13px 14px;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.inline-message {
  margin-top: 14px;
  min-height: 1.25rem;
  color: var(--muted);
}

.inline-message--success {
  color: var(--green-dark);
}

.inline-message--error {
  color: #a22626;
}

.inline-message--info {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(77, 124, 52, 0.08);
  color: var(--green-dark);
}

.admin-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 18px;
  margin-top: 16px;
}

.admin-auth-panel {
  max-width: 760px;
  margin: 0 auto;
}

.admin-auth-panel .section-heading,
.admin-panel .section-heading {
  margin-bottom: 18px;
}

.admin-tab-row {
  margin-bottom: 24px;
}

.admin-app-bar {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 20px;
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(126, 164, 83, 0.14), rgba(255, 255, 255, 0.92) 45%),
    var(--surface);
  box-shadow: var(--shadow);
}

.admin-app-bar h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.65rem, 3.8vw, 2.35rem);
  line-height: 1.05;
}

.admin-panel {
  position: relative;
  overflow: hidden;
  padding: 30px;
}

.admin-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(126, 164, 83, 0.4), transparent 72%);
}

.admin-panel--queue,
.admin-panel--detail,
.admin-panel--catalog {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 239, 0.96)),
    var(--surface);
}

.admin-dashboard {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 18px;
}

.admin-dashboard--single {
  grid-template-columns: 1fr;
}

.admin-list {
  display: grid;
  gap: 10px;
  max-height: 540px;
  overflow: auto;
  padding-right: 4px;
}

.admin-list__item {
  appearance: none;
  text-align: left;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(244, 249, 237, 0.96)),
    var(--surface-soft);
  padding: 15px 16px;
  border-radius: 18px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.admin-list__item:hover,
.lead-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(43, 71, 29, 0.1);
}

.admin-list__item.is-active {
  background: rgba(77, 124, 52, 0.1);
  border-color: rgba(77, 124, 52, 0.3);
  box-shadow: 0 16px 30px rgba(77, 124, 52, 0.12);
}

.admin-list__item small {
  display: block;
  color: var(--muted);
  margin-top: 6px;
  font-size: 0.88rem;
}

.lead-list,
.activity-list {
  display: grid;
  gap: 12px;
}

.lead-card {
  appearance: none;
  text-align: left;
  width: 100%;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(243, 249, 235, 0.96)),
    var(--surface-soft);
  border-radius: 16px;
  padding: 14px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.lead-card--active {
  border-color: rgba(77, 124, 52, 0.3);
  background: rgba(77, 124, 52, 0.1);
  box-shadow: 0 16px 30px rgba(77, 124, 52, 0.12);
}

.lead-card__top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: start;
  margin-bottom: 8px;
}

.lead-card__meta {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.92rem;
}

.lead-card strong {
  font-size: 1rem;
  line-height: 1.3;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: capitalize;
}

.status-badge--new { background: #e7f3ff; color: #165f98; }
.status-badge--contacted { background: #eef7e5; color: #426528; }
.status-badge--quoted { background: #fff4df; color: #8a5a00; }
.status-badge--scheduled { background: #efe9ff; color: #5b38a5; }
.status-badge--won { background: #def7e6; color: #1d6a34; }
.status-badge--lost { background: #fde8e8; color: #9b2626; }
.status-badge--archived { background: #eceff3; color: #4f5d6a; }

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 4px;
}

.detail-grid__item {
  padding: 14px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(242, 248, 235, 0.96)),
    var(--surface-soft);
  border: 1px solid var(--border);
}

.detail-grid__item span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.detail-grid__item strong {
  font-size: 1rem;
  line-height: 1.4;
}

.admin-detail-form {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(77, 124, 52, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.admin-activity-panel {
  border-style: dashed;
}

.admin-activity-composer {
  margin-bottom: 14px;
}

.activity-item {
  padding: 14px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(244, 249, 237, 0.96)),
    var(--surface-soft);
  border: 1px solid var(--border);
}

.activity-item strong {
  color: var(--green-dark);
  text-transform: capitalize;
}

.activity-item p {
  margin: 8px 0;
  line-height: 1.7;
}

.activity-item small {
  color: var(--muted);
}

.master-homepage {
  padding: 30px 0 12px;
}

.master-homepage__hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 18px;
  align-items: end;
}

.master-homepage__copy {
  max-width: 600px;
  padding: 22px 0 56px;
}

.master-homepage__headline,
.master-homepage h2,
.action-band__heading h2,
.service-area__copy h2 {
  font-family: "Playfair Display", serif;
  color: #16274a;
}

.master-homepage__headline {
  margin: 0;
  max-width: 560px;
  font-size: clamp(2.9rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.master-homepage__headline span {
  color: #5d9728;
  font-style: italic;
}

.master-homepage__swoosh {
  width: min(460px, 82%);
  height: 16px;
  margin: 12px 0 28px 24px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 74% 52%, rgba(255, 250, 184, 0.95) 0 8px, transparent 9px),
    radial-gradient(circle at 83% 40%, rgba(255, 255, 255, 0.95) 0 5px, transparent 6px),
    linear-gradient(90deg, rgba(194, 214, 84, 0), rgba(196, 214, 84, 0.6) 22%, rgba(142, 183, 53, 0.95) 64%, rgba(196, 214, 84, 0) 100%);
  transform: skewX(-18deg);
  filter: drop-shadow(0 8px 16px rgba(186, 209, 83, 0.32));
}

.master-homepage h2 {
  margin: 0 0 16px;
  max-width: 540px;
  font-size: clamp(1.95rem, 3.2vw, 3rem);
  line-height: 1.08;
}

.master-homepage__subhead {
  margin: 0 0 14px;
  color: #324057;
  font-size: clamp(1.1rem, 1.6vw, 1.65rem);
}

.master-homepage__area {
  margin: 0 0 28px;
  color: #55606c;
  font-size: 1rem;
}

.master-homepage__actions {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 18px;
}

.master-homepage__cta {
  min-width: 290px;
  font-size: 1.05rem;
  padding: 16px 28px;
}

.master-homepage__watch {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #1f3150;
  text-decoration: underline;
  text-decoration-color: rgba(31, 49, 80, 0.16);
  text-underline-offset: 8px;
}

.master-homepage__watch-icon,
.service-area__check {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 16px;
  background: #eef1e8;
  color: #6a9727;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(43, 71, 29, 0.08);
}

.master-homepage__visual {
  position: relative;
  min-height: 620px;
}

.master-homepage__scene {
  position: absolute;
  inset: 0;
  border-radius: 36px;
  background:
    radial-gradient(circle at 16% 28%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, #d9ecff 0%, #eef7ff 22%, #ffffff 44%, #d7ec95 45%, #9dca3d 78%, #7aa62b 100%);
  overflow: hidden;
}

.master-homepage__scene::before {
  content: "";
  position: absolute;
  inset: 18% 7% 21% 12%;
  border-radius: 32px;
  background:
    radial-gradient(circle at 18% 26%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.72) 40%, rgba(255, 255, 255, 0.08) 72%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
}

.master-homepage__scene::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: -1%;
  height: 30%;
  background:
    linear-gradient(180deg, rgba(190, 214, 77, 0), rgba(175, 203, 58, 0.25) 24%, rgba(120, 158, 33, 0.88) 100%);
  clip-path: ellipse(78% 100% at 50% 100%);
}

.master-homepage__mower {
  position: absolute;
  right: 2%;
  bottom: 4%;
  width: min(620px, 84%);
  filter: drop-shadow(0 24px 48px rgba(17, 24, 39, 0.24));
}

.master-homepage__play {
  position: absolute;
  right: 29%;
  top: 46%;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(34, 38, 45, 0.72);
  color: #fff;
  border: 4px solid rgba(255, 255, 255, 0.85);
  font-size: 2rem;
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.22);
}

.master-homepage__cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: -44px;
  margin-bottom: 28px;
}

.master-feature-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  padding: 24px 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(26, 39, 74, 0.08);
  box-shadow: 0 18px 44px rgba(43, 71, 29, 0.12);
}

.master-feature-card__icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #f2f5ca, #dce8a5 70%, #ced68b 100%);
}

.master-feature-card__icon img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.master-feature-card h3,
.video-panel h3 {
  margin: 0 0 10px;
  color: #16274a;
}

.master-feature-card h3 {
  font-size: clamp(1.35rem, 1.8vw, 1.8rem);
  line-height: 1.08;
}

.master-feature-card p {
  margin: 0;
  color: #55606c;
  line-height: 1.5;
  font-size: 1rem;
}

.action-band {
  position: relative;
  margin-top: 12px;
  padding: 88px 0 92px;
  background: linear-gradient(180deg, #24344f 0%, #1b2b45 100%);
}

.action-band::before,
.action-band::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 58px;
  background: #f8fbf4;
}

.action-band::before {
  top: -1px;
  clip-path: ellipse(72% 100% at 50% 0%);
}

.action-band::after {
  bottom: -1px;
  clip-path: ellipse(72% 100% at 50% 100%);
}

.action-band__heading {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 28px;
}

.action-band__heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.45rem, 4.2vw, 3.6rem);
  line-height: 1.05;
}

.action-band__heading p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
}

.action-band__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.video-panel {
  display: block;
  color: #fff;
}

.video-panel__media {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(7, 14, 26, 0.32);
  background: #18243b;
}

.video-panel__media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-panel__play {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(35, 42, 52, 0.7);
  color: #fff;
  border: 4px solid rgba(255, 255, 255, 0.86);
  font-size: 1.9rem;
}

.video-panel h3 {
  margin-top: 16px;
  text-align: center;
  color: #fff;
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  line-height: 1.25;
}

.service-area {
  padding: 56px 0 20px;
}

.service-area__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: center;
}

.service-area__map {
  display: block;
}

.service-area__map img {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
}

.service-area__copy h2 {
  margin: 0 0 18px;
  font-size: clamp(2.3rem, 4vw, 3.5rem);
}

.service-area__copy p {
  margin: 0 0 18px;
  color: #55606c;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 610px;
}

.service-area__lead {
  display: flex;
  align-items: start;
  gap: 14px;
  font-size: 1.02rem;
}

.service-area__lead-copy {
  display: block;
  max-width: 42rem;
}

.service-area__lead strong {
  color: #3f4e61;
}

.site-footer {
  padding: 16px 0 20px;
}

.site-footer > .shell.site-footer__inner {
  width: 100%;
  max-width: 100%;
  margin: 0;
  border-radius: 0;
  padding-left: clamp(16px, 4vw, 56px);
  padding-right: clamp(16px, 4vw, 56px);
}

.site-footer__inner {
  gap: 14px;
  padding: 16px 20px;
  border-radius: 22px;
  border: 1px solid rgba(175, 211, 139, 0.22);
  background:
    radial-gradient(120% 130% at 88% -10%, rgba(141, 194, 91, 0.14) 0%, rgba(141, 194, 91, 0) 56%),
    linear-gradient(145deg, #1c3015 0%, #14250f 100%);
  box-shadow: 0 16px 30px rgba(10, 18, 8, 0.24);
}

.site-footer__inner > :first-child {
  max-width: 500px;
}

.site-footer__inner h2 {
  margin: 0 0 6px;
  font-size: clamp(1.55rem, 2.15vw, 2rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
}

.site-footer__inner p {
  margin: 0;
  max-width: 52ch;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(241, 248, 233, 0.82);
}

.site-footer .footer-links {
  max-width: 760px;
  justify-content: flex-end;
  gap: 8px;
  row-gap: 8px;
}

.site-footer .footer-links a,
.site-footer .footer-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(201, 227, 174, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(245, 251, 237, 0.95);
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 120ms ease, background-color 120ms ease, border-color 120ms ease;
}

.site-footer .footer-links a:hover,
.site-footer .footer-link-button:hover {
  transform: translateY(-1px);
  background: rgba(178, 214, 141, 0.2);
  border-color: rgba(212, 235, 188, 0.5);
}

.site-footer .footer-link-button {
  width: auto;
  cursor: pointer;
}

.embedded-page-main {
  padding: 0;
}

.embedded-page-shell {
  width: min(100%, 1600px);
  margin: 0 auto;
}

.embedded-page-frame {
  display: block;
  width: 100%;
  min-height: 1200px;
  border: 0;
  background: transparent;
}

.embedded-page-frame--dark {
  background: #111826;
}

@media (max-width: 1080px) {
  .metrics,
  .card-grid--three,
  .catalog-group__cards,
  .p2-tech-grid,
  .p3-status-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__grid,
  .section-grid,
  .split-section,
  .split-section--reverse,
  .admin-layout,
  .admin-dashboard,
  .detail-grid,
  .p2-hero__frame,
  .p2-feature-panel,
  .p2-walkthrough,
  .p3-hero,
  .master-homepage__hero,
  .service-area__grid {
    grid-template-columns: 1fr;
  }

  .p2-hero__media {
    min-height: 520px;
  }

  .p2-hero__highlight {
    position: static;
    width: 100%;
    margin-bottom: 18px;
  }

  .hero__image {
    justify-self: start;
  }

  .master-homepage__visual {
    min-height: 620px;
  }

  .master-homepage__mower {
    width: min(700px, 92%);
  }

  .master-homepage__play {
    right: 25%;
    top: 41%;
  }

  .master-homepage__cards,
  .action-band__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__inner {
    align-items: flex-start;
  }

  .site-footer .footer-links {
    justify-content: flex-start;
  }

  .admin-app-bar {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .site-header__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .button-row,
  .footer-links,
  .hero-card__actions {
    width: 100%;
  }

  .button,
  .footer-link-button {
    width: 100%;
    text-align: center;
  }

  .site-footer .footer-link-button,
  .site-footer .footer-links a {
    width: auto;
  }

  .brand {
    width: 100%;
    grid-column: 1;
  }

  .brand div {
    min-width: 0;
  }

  .nav-toggle {
    display: inline-flex;
    grid-column: 2;
    justify-self: end;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 14px;
    padding: 14px;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }

  .site-header__inner.nav-open .site-nav {
    display: flex;
  }

  .site-nav > a,
  .site-nav > button {
    width: 100%;
    text-align: center;
  }

  .metrics,
  .card-grid--three,
  .catalog-group__cards,
  .form-grid,
  .master-homepage__cards,
  .action-band__grid,
  .p2-tech-grid,
  .p3-status-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 34px;
  }

  .hero__copy h1 {
    font-size: clamp(2.3rem, 12vw, 3.6rem);
  }

  .hero-card,
  .panel,
  .catalog-group,
  .metric-card,
  .catalog-card {
    padding: 20px;
  }

  .p2-hero__overlay,
  .p2-hero__media,
  .p2-feature-panel,
  .p2-tech-card,
  .p2-walkthrough,
  .p3-hero,
  .p3-catalog-shell {
    padding: 20px;
  }

  .p2-hero__brand-tag {
    font-size: 1.1rem;
  }

  .p2-hero__service-line {
    font-size: 1.16rem;
  }

  .p2-hero__media {
    min-height: 420px;
  }

  .p2-hero__product-stack {
    gap: 0;
  }

  .p2-turtle-grid {
    grid-template-columns: 1fr;
  }

  .p3-section-head {
    margin-bottom: 16px;
  }

  .master-homepage {
    padding-top: 18px;
  }

  .master-homepage__headline {
    font-size: clamp(2.5rem, 13vw, 3.7rem);
  }

  .master-homepage__swoosh {
    width: 92%;
    margin-left: 0;
  }

  .master-homepage h2 {
    font-size: clamp(1.95rem, 9vw, 2.8rem);
  }

  .master-homepage__cta {
    min-width: 0;
    width: 100%;
  }

  .master-homepage__visual {
    min-height: 390px;
  }

  .master-homepage__mower {
    right: 50%;
    bottom: 4%;
    width: min(500px, 118%);
    transform: translateX(50%);
  }

  .master-homepage__play {
    width: 74px;
    height: 74px;
    right: 50%;
    top: 43%;
    transform: translateX(88px);
    font-size: 1.65rem;
  }

  .master-feature-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .action-band {
    padding: 74px 0 80px;
  }

  .action-band__heading h2,
  .service-area__copy h2 {
    font-size: clamp(2.3rem, 10vw, 3.2rem);
  }

  .service-area__copy p {
    font-size: 0.98rem;
  }

  .site-footer__brand h2 {
    font-size: clamp(1.8rem, 12vw, 2.5rem);
  }

  body {
    background-attachment: scroll;
  }
}
