:root {
  --bg: #f3f6f8;
  --white: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #e5e7eb;
  --green: #74b53f;
  --green-dark: #4e7f21;
  --blue: #314a59;
  --shadow: 0 18px 40px rgba(15, 23, 42, .08);
  --radius: 22px;
  --max: 1200px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(116,181,63,.12), transparent 20%),
    linear-gradient(180deg, #f8fafc 0%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }
.topbar {
  background: var(--white);
  border-bottom: 1px solid rgba(229,231,235,.9);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 82px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { width: 320px; max-width: 100%; height: auto; }
.nav { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--blue);
  font-weight: 600;
  font-size: .94rem;
}
.nav a:hover { background: rgba(116,181,63,.12); color: var(--green-dark); }
.hero { padding: 46px 0 24px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 28px;
  align-items: center;
}
.hero-copy {
  background: var(--white);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 34px;
  border: 1px solid rgba(229,231,235,.9);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(116,181,63,.12);
  color: var(--green-dark);
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 16px;
}
h1 {
  margin: 0 0 14px;
  font-size: clamp(2.1rem, 2vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--blue);
}
.lead {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 60ch;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(15,23,42,.12); }
.btn-primary { background: linear-gradient(180deg, #85c94f 0%, var(--green) 100%); color: #fff; }
.btn-secondary { background: #f8fafc; color: var(--blue); border: 1px solid var(--line); }
.hero-shot {
  background: var(--white);
  border-radius: 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(229,231,235,.9);
  overflow: hidden;
}
.hero-shot .caption {
  padding: 14px 18px;
  border-top: 1px solid var(--line);
  font-size: .94rem;
  color: var(--muted);
  background: #fbfdff;
}
.section { padding: 14px 0 42px; }
.grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 28px; }
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(229,231,235,.9);
  padding: 28px;
}
.card h2 { margin: 0 0 18px; font-size: 1.35rem; color: var(--blue); }
.details { display: grid; gap: 14px; }
.detail {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
  background: #fbfdff;
}
.detail-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.label {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .77rem;
  font-weight: 800;
}
.value { font-weight: 600; color: var(--text); word-break: break-word; }
.value a { color: var(--green-dark); }
.platform-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.platform {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  font-weight: 700;
  color: var(--blue);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.platform i { width: 18px; text-align: center; color: var(--green-dark); font-size: 1rem; }
.platform:hover { transform: translateY(-2px); border-color: rgba(116,181,63,.55); box-shadow: 0 12px 24px rgba(15,23,42,.07); }
.platform.disabled { opacity: .72; cursor: default; background: #f8fafc; }
.platform.disabled:hover { transform: none; box-shadow: none; border-color: var(--line); }
.note {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(116,181,63,.08);
  color: #35521b;
  border: 1px dashed rgba(116,181,63,.4);
  font-size: .95rem;
}
.footer { padding: 0 0 46px; color: var(--muted); text-align: center; font-size: .92rem; }
@media (max-width: 980px) {
  .hero-grid, .grid { grid-template-columns: 1fr; }
  .topbar-inner { padding: 14px 0; align-items: flex-start; flex-direction: column; }
  .nav { justify-content: flex-start; }
}
@media (max-width: 620px) {
  .hero-copy, .card { padding: 22px; }
  .platform-grid, .detail-row { grid-template-columns: 1fr; }
  .brand img { width: 220px; }
}
