:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-2: #f7f8fb;
  --text: #1b2430;
  --muted: #5b6b63;
  --border: rgba(68, 84, 106, 0.16);

  --primary: #0e8345; /* Figma green600 */
  --primary-2: #0b6f3b;
  --teal: #18a37a;
  --accent: #f2ba02;

  --danger: #e54c5e;
  --warn: #f2ba02;
  --ok: #75bd42;

  --primary-rgb: 14, 131, 69;
  --shadow: 0 14px 38px rgba(14, 131, 69, 0.16);
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei",
    "Noto Sans CJK SC", "Noto Sans", sans-serif;
  color: var(--text);
  background: radial-gradient(
      900px 420px at 10% -10%,
      rgba(11, 93, 59, 0.18),
      transparent 60%
    ),
    radial-gradient(
      720px 360px at 88% 0%,
      rgba(24, 163, 122, 0.16),
      transparent 60%
    ),
    var(--bg);
  line-height: 1.55;
}

.strong {
  font-weight: 800;
}

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  left: 16px;
  top: 12px;
  width: auto;
  height: auto;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  z-index: 9999;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(68, 84, 106, 0.12);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 18px;
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
}

.brand__logo {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(var(--primary-rgb), 0.18);
  box-shadow: 0 12px 28px rgba(var(--primary-rgb), 0.18);
  background: #fff;
}

.brand__title {
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--primary);
  font-size: 13px;
  line-height: 1.25;
}

.brand__subtitle {
  font-size: 12px;
  color: var(--muted);
}

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

.nav__link {
  padding: 8px 10px;
  border-radius: 10px;
  color: var(--muted);
  border: 1px solid transparent;
}

.nav__link:hover {
  color: var(--text);
  background: rgba(var(--primary-rgb), 0.08);
  border-color: rgba(var(--primary-rgb), 0.16);
}

.hero {
  position: relative;
  padding: 56px 0 26px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      800px 420px at 10% 12%,
      rgba(var(--primary-rgb), 0.32),
      transparent 55%
    ),
    radial-gradient(
      640px 320px at 78% 18%,
      rgba(24, 163, 122, 0.22),
      transparent 55%
    ),
    linear-gradient(180deg, rgba(var(--primary-rgb), 0.1), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: stretch;
  position: relative;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 0;
}

.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 380px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.1);
  border: 1px solid rgba(var(--primary-rgb), 0.16);
  padding: 6px 10px;
  border-radius: 999px;
  margin: 0 0 12px;
}

.hero__title {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.02em;
}

.hero__desc {
  margin: 12px 0 18px;
  color: var(--muted);
  max-width: 52ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-weight: 600;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}

.btn--small {
  height: 34px;
  padding: 0 12px;
  border-radius: 11px;
  font-size: 13px;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary-2), var(--primary));
  color: #fff;
  border-color: rgba(11, 93, 59, 0.12);
  box-shadow: var(--shadow);
}

.btn--primary:hover {
  filter: brightness(1.03);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.6);
}

.btn--ghost:hover {
  background: rgba(24, 163, 122, 0.08);
  border-color: rgba(24, 163, 122, 0.22);
}

.trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.trust__item {
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(11, 93, 59, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.trust__k {
  font-size: 12px;
  color: var(--primary);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.trust__v {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.shots {
  position: relative;
  width: min(420px, 100%);
  height: 420px;
}

.shot {
  position: absolute;
  width: 68%;
  height: auto;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(68, 84, 106, 0.18);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.18);
  user-select: none;
}

.shot--front {
  left: 18%;
  top: 0;
  z-index: 3;
  transform: rotate(2deg);
}

.shot--mid {
  left: 0;
  top: 40px;
  z-index: 2;
  transform: rotate(-6deg);
  filter: saturate(0.98);
  opacity: 0.92;
}

.shot--back {
  right: 0;
  top: 72px;
  z-index: 1;
  transform: rotate(7deg);
  opacity: 0.88;
}

.section {
  padding: 28px 0;
}

.section--alt {
  background: linear-gradient(
    180deg,
    rgba(11, 93, 59, 0.06),
    rgba(24, 163, 122, 0.04)
  );
  border-top: 1px solid rgba(68, 84, 106, 0.12);
  border-bottom: 1px solid rgba(68, 84, 106, 0.12);
}

.section__title {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.01em;
}

.section__desc {
  margin: 10px 0 16px;
  color: var(--muted);
  max-width: 72ch;
}

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

.card,
.feature {
  padding: 16px 16px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.card__title,
.feature__title {
  margin: 0 0 6px;
  font-size: 16px;
}

.card__desc,
.feature__desc {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.feature__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
  border: 1px solid var(--border);
}

.feature__badge--primary {
  color: #fff;
  background: rgba(11, 93, 59, 0.92);
  border-color: rgba(11, 93, 59, 0.18);
}

.feature__badge--teal {
  color: #054e3a;
  background: rgba(24, 163, 122, 0.14);
  border-color: rgba(24, 163, 122, 0.22);
}

.feature__badge--accent {
  color: #7a5a02;
  background: rgba(242, 186, 2, 0.16);
  border-color: rgba(242, 186, 2, 0.26);
}

.contact {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  align-items: start;
}

.contact__panel {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
}

.contact__row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px dashed rgba(68, 84, 106, 0.18);
}

.contact__row:first-child {
  border-top: 0;
  padding-top: 0;
}

.contact__k {
  font-size: 12px;
  color: var(--muted);
}

.contact__v {
  font-size: 14px;
}

.footer {
  padding: 18px 0 28px;
  color: var(--muted);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

@media (max-width: 880px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .contact {
    grid-template-columns: 1fr;
  }
  .trust {
    grid-template-columns: 1fr;
  }
  .shots {
    height: 360px;
  }
  .shot {
    width: 78%;
  }
}
