:root {
  --bg: #f7f8fb;
  --ink: #111827;
  --muted: #5b6472;
  --line: #d8dde6;
  --panel: #ffffff;
  --brand: #146c5f;
  --brand-dark: #0f5148;
  --accent: #e6a23c;
  --blue: #2563eb;
  --shadow: 0 24px 80px rgba(17, 24, 39, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(216, 221, 230, 0.82);
  background: rgba(247, 248, 251, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: min(184px, 42vw);
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a,
.site-footer a {
  text-decoration: none;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--brand);
}

.language-switcher {
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.lang-button {
  min-width: 48px;
  min-height: 34px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.lang-button.is-active {
  background: var(--ink);
  color: white;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  align-items: center;
  gap: clamp(36px, 6vw, 96px);
  min-height: calc(100vh - 72px);
  padding: clamp(48px, 7vw, 96px) clamp(20px, 4vw, 56px);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 19px;
  line-height: 1.2;
}

.hero-text {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 760;
  text-decoration: none;
}

.button.primary {
  background: var(--brand);
  color: white;
}

.button.primary:hover {
  background: var(--brand-dark);
}

.button.secondary {
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
}

.product-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.screen-header {
  display: flex;
  gap: 8px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  background: #f2f4f7;
}

.screen-header span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #a7b0bf;
}

.member-card {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 22px;
  padding: 20px;
  border-radius: 8px;
  background: #111827;
  color: white;
}

.metric-label,
.member-card p {
  margin: 0 0 6px;
  color: #b7c0ce;
  font-size: 13px;
}

.member-card strong {
  display: block;
  font-size: 21px;
  line-height: 1.15;
}

.status {
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(20, 108, 95, 0.22);
  color: #83e4d5;
  font-size: 12px;
  font-weight: 780;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0 22px 22px;
}

.metric-grid div {
  min-height: 104px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.metric-grid span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.metric-grid strong {
  display: block;
  margin-top: 12px;
  font-size: 30px;
}

.insight-list {
  display: grid;
  gap: 12px;
  padding: 0 22px 24px;
}

.insight-list div {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.insight-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.dot {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 999px;
}

.dot.green {
  background: var(--brand);
}

.dot.blue {
  background: var(--blue);
}

.dot.amber {
  background: var(--accent);
}

.section {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(220px, 1fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}

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

.feature-grid.compact .feature-card {
  min-height: 230px;
}

.feature-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.feature-card p,
.benefit-list p,
.contact-band p {
  color: var(--muted);
}

.status-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: #fff3df;
  color: #8a560e;
  font-size: 12px;
  font-weight: 820;
}

.icon-box {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 34px;
  border-radius: 8px;
  background: #e9f4f2;
  color: var(--brand);
  font-weight: 820;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: start;
}

.ai-band {
  background: #ffffff;
}

.benefit-list {
  display: grid;
  gap: 22px;
}

.benefit-list div {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.benefit-list div:last-child {
  border-bottom: 0;
}

.contact-band {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  background: #eef3f1;
}

.contact-band p {
  max-width: 680px;
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  gap: 18px;
}

.policy-page {
  padding: clamp(42px, 7vw, 84px) 20px;
}

.policy-content {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.policy-content h1 {
  margin-top: 0;
  font-size: clamp(34px, 6vw, 56px);
}

.policy-content h2 {
  margin-top: 34px;
  font-size: 24px;
}

.policy-content hr {
  margin: 46px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

@media (max-width: 920px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
  }

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

  .hero {
    min-height: auto;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .site-header {
    gap: 14px;
  }

  .nav-links {
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  h1 {
    font-size: 40px;
  }

  .metric-grid {
    grid-template-columns: 1fr;
  }

  .member-card {
    flex-direction: column;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .site-footer div {
    flex-direction: column;
    gap: 8px;
  }
}
