:root {
  --bg: #f6f8f5;
  --surface: #ffffff;
  --surface-soft: #eef6ef;
  --ink: #17313b;
  --muted: #617178;
  --green: #18b96d;
  --green-dark: #004b2d;
  --green-soft: #dff4e8;
  --line: #dce7df;
  --shadow: 0 20px 45px rgba(23, 49, 59, 0.08);
  --radius: 22px;
  --max-width: 1160px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(24, 185, 109, 0.08), transparent 20rem),
    linear-gradient(180deg, #fbfcfa, var(--bg));
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.container {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(247, 250, 247, 0.9);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 168px;
}

.brand img {
  width: 100%;
  height: auto;
}

.nav-toggle {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  padding: 0.5rem 0.8rem;
  font-size: 0.95rem;
  display: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-link {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 650;
  font-size: 0.94rem;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--ink);
  background: var(--surface);
}

.nav-link.active {
  color: var(--surface);
  background: var(--green-dark);
}

.nav-cta {
  color: var(--surface);
  background: var(--green-dark);
}

.hero {
  padding: 7rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(24, 185, 109, 0.16), transparent 28rem),
    linear-gradient(135deg, rgba(0, 75, 45, 0.06), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero-copy h1 {
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-size: clamp(3rem, 6.6vw, 5.9rem);
  margin: 0 0 1.2rem;
  overflow-wrap: anywhere;
}

.hero-copy p {
  margin: 0;
  color: var(--muted);
  max-width: 58ch;
  font-size: 1.12rem;
}

.hero-card {
  background: linear-gradient(145deg, #ffffff, #f1f7f2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.hero-media {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #edf6ef);
  box-shadow: var(--shadow);
  padding: 1rem;
  position: relative;
}

.hero-media::after {
  content: "";
  position: absolute;
  right: -1.1rem;
  bottom: -1.1rem;
  width: 38%;
  height: 38%;
  border-radius: 999px;
  background: rgba(24, 185, 109, 0.12);
  z-index: -1;
}

.hero-media img {
  width: 100%;
  max-height: 470px;
  border-radius: 16px;
  object-fit: contain;
  background: #f9fbf9;
}

.product-visual {
  position: relative;
  border-radius: 30px;
  padding: clamp(1rem, 2vw, 1.35rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(239, 247, 240, 0.92)),
    radial-gradient(circle at 70% 0%, rgba(24, 185, 109, 0.18), transparent 22rem);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.product-visual img {
  width: 100%;
  max-height: 530px;
  object-fit: contain;
  border-radius: 22px;
  background: transparent;
}

.visual-note {
  display: grid;
  gap: 0.2rem;
  margin-top: 0.9rem;
  padding: 1rem;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.visual-note span {
  color: var(--muted);
  font-size: 0.95rem;
}

.kicker {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 0.8rem;
  font-weight: 800;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.btn {
  border: 1px solid var(--green);
  border-radius: 999px;
  padding: 0.78rem 1.12rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: 180ms ease;
}

.btn-primary {
  background: var(--green-dark);
  color: var(--surface);
  border-color: var(--green-dark);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #063d29;
  border-color: #063d29;
}

.btn-secondary {
  background: transparent;
  color: var(--green-dark);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--surface);
}

.section {
  padding: 4.7rem 0;
}

.compact-section {
  padding-top: 1.5rem;
}

.section-title {
  margin: 0 0 0.6rem;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.section-lead {
  color: var(--muted);
  margin: 0 0 1.4rem;
  max-width: 70ch;
}

.problem-card {
  display: grid;
  gap: 0.75rem;
  padding: clamp(1.5rem, 4vw, 2.6rem);
  border-radius: 30px;
  background: var(--green-dark);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.problem-card h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(1.8rem, 3.7vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  overflow-wrap: anywhere;
}

.problem-card p {
  max-width: 820px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.problem-card .kicker {
  color: #9df0c3;
}

.grid {
  display: grid;
  gap: 1.1rem;
}

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

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

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.product-card {
  position: relative;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), #ffffff 54%),
    var(--surface);
  padding: clamp(1.3rem, 3vw, 2rem);
  box-shadow: var(--shadow);
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(24, 185, 109, 0.14), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.product-card > * {
  position: relative;
}

.product-card h3 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.04em;
  line-height: 1;
  overflow-wrap: anywhere;
}

.product-card p {
  margin: 0;
  color: var(--muted);
}

.product-index {
  position: absolute;
  top: 1.35rem;
  left: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 800;
}

.dark-card {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(0, 75, 45, 0.75), var(--green-dark)),
    var(--green-dark);
}

.dark-card p,
.dark-card .feature-list li {
  color: rgba(255, 255, 255, 0.78);
}

.dark-card .product-index {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.45rem;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: #c6d7c4;
  box-shadow: 0 14px 32px rgba(24, 35, 27, 0.12);
}

.card-image {
  margin: -0.45rem -0.45rem 1.1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #f8faf8;
}

.card-image img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  background: #f8faf8;
}

.card-image.cover img {
  object-fit: cover;
}

.brand-band {
  background: var(--green-dark);
  color: #f4fff8;
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
}

.business-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

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

.metric-card {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.3rem;
  box-shadow: var(--shadow);
}

.metric-card strong {
  display: block;
  color: var(--green-dark);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

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

.brand-band .section-title,
.brand-band .section-lead {
  color: #f4fff8;
}

.brand-gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.brand-gallery img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #fff;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  letter-spacing: -0.015em;
}

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

.metric {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin: 0;
  color: var(--green-dark);
}

.label {
  margin: 0.3rem 0 0;
  color: var(--muted);
}

.split-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.eyebrow-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--muted);
  padding: 0.42rem 0.7rem;
  font-size: 0.9rem;
  font-weight: 650;
}

.number-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.number-card {
  padding: 1.15rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.7rem;
}

.feature-list li {
  border-left: 3px solid var(--green);
  padding-left: 0.85rem;
  color: var(--muted);
}

.quiet-section {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.contact-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.contact-list a,
.contact-list span {
  width: fit-content;
  color: var(--ink);
  font-weight: 700;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  color: var(--green-dark);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.7rem 0 2rem;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.focus-ring:focus-visible,
.btn:focus-visible,
.nav-toggle:focus-visible,
.nav-link:focus-visible {
  outline: 3px solid rgba(24, 185, 109, 0.35);
  outline-offset: 2px;
}

@media (max-width: 900px) {
  .hero-grid,
  .grid-3,
  .grid-2,
  .split-panel,
  .brand-gallery,
  .number-strip,
  .product-grid,
  .business-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 4rem;
  }

  .product-card {
    min-height: auto;
    justify-content: flex-start;
    padding-top: 5rem;
  }
}

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

  .brand {
    width: 132px;
    min-width: 0;
  }

  .nav-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .nav-menu {
    position: absolute;
    top: 72px;
    right: 1rem;
    left: 1rem;
    flex-direction: column;
    align-items: stretch;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: var(--surface);
    padding: 0.45rem;
    box-shadow: var(--shadow);
    display: none;
    z-index: 1001;
  }

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

  .nav-link {
    border-radius: 10px;
  }

  .hero {
    padding: 2.75rem 0 3rem;
  }

  .hero-grid {
    gap: 1.5rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.05rem, 10.5vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
  }

  .hero-copy p,
  .section-lead,
  .problem-card p {
    font-size: 1rem;
  }

  .product-visual {
    border-radius: 22px;
    padding: 0.75rem;
  }

  .product-visual img {
    max-height: 360px;
    border-radius: 16px;
  }

  .visual-note {
    padding: 0.85rem;
  }

  .section {
    padding: 3rem 0;
  }

  .compact-section {
    padding-top: 0.5rem;
  }

  .problem-card {
    border-radius: 22px;
    padding: 1.2rem;
  }

  .problem-card h2,
  .section-title {
    font-size: clamp(1.55rem, 8vw, 2.25rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
  }

  .product-card {
    border-radius: 22px;
    padding: 4.75rem 1.1rem 1.2rem;
  }

  .product-card h3 {
    font-size: clamp(1.55rem, 8vw, 2.15rem);
    line-height: 1.05;
  }

  .product-index {
    top: 1rem;
    left: 1rem;
    width: 2.55rem;
    height: 2.55rem;
  }

  .metric-grid {
    gap: 0.8rem;
  }

  .metric-card {
    min-height: auto;
    gap: 1rem;
  }

  .metric-card strong {
    font-size: clamp(1.65rem, 10vw, 2.4rem);
  }

  .contact-list a,
  .contact-list span {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .button-group {
    width: 100%;
  }

  .btn {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .header-inner {
    min-height: 64px;
  }

  .nav-menu {
    top: 64px;
  }

  .brand {
    width: 118px;
  }

  .eyebrow-row {
    gap: 0.45rem;
  }

  .pill {
    font-size: 0.82rem;
  }
}

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