:root {
  --green: #0f766e;
  --orange: #e4572e;
  --ink: #111827;
  --muted: #64748b;
  --line: #dbe3ea;
  --bg: #f7fafc;
  --white: #ffffff;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
}
a { color: inherit; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 6vw;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 900; color: var(--ink); }
.brand img { width: 38px; height: 38px; border-radius: 8px; }
nav { display: flex; gap: 14px; flex-wrap: wrap; font-size: 14px; justify-content: flex-end; }
nav a { text-decoration: none; color: var(--muted); font-weight: 700; }
nav a:hover { color: var(--green); }
.hero {
  min-height: 70vh;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  align-items: center;
  gap: 32px;
  padding: 56px 6vw 40px;
  background: linear-gradient(120deg, #ffffff 0%, #edf7f5 55%, #fff4ec 100%);
}
.eyebrow { color: var(--orange); font-weight: 900; text-transform: uppercase; font-size: 13px; letter-spacing: 0; }
h1 { font-size: 54px; line-height: 1.02; margin: 8px 0 16px; max-width: 760px; }
.lead { max-width: 660px; font-size: 19px; color: #334155; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.primary, .secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}
.primary { background: var(--green); color: white; }
.secondary { border: 1px solid var(--line); background: white; color: var(--ink); }
.hero-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, .08);
}
.hero-card img { width: 96px; height: 96px; border-radius: 20px; flex: 0 0 auto; }
.hero-card strong { display: block; font-size: 26px; }
.hero-card span { color: var(--muted); }
.section, .page { padding: 46px 6vw; max-width: 1180px; margin: 0 auto; }
.page { min-height: 68vh; }
.section h2, .page h1 { margin-top: 0; }
.section h2 { margin-bottom: 18px; font-size: 30px; }
.page h1 { font-size: 42px; line-height: 1.1; }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
article, .split > div, .notice, .download-box, .contact-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}
article h2, article h3 { margin: 0 0 8px; }
article p, .notice p, .download p, li, .page p { color: #475569; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.download-box { display: flex; justify-content: space-between; align-items: center; gap: 14px; margin-top: 16px; }
.download-box.wide { max-width: 760px; }
.download-box span { font-weight: 900; }
.small, .muted { font-size: 13px; color: var(--muted); }
.legal { max-width: 920px; }
.legal h2 { margin-top: 28px; }
.footer-links { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-links a { color: var(--green); font-weight: 700; text-decoration: none; }
footer { padding: 24px 6vw; color: var(--muted); border-top: 1px solid var(--line); background: white; }
@media (max-width: 900px) {
  .topbar { align-items: flex-start; flex-direction: column; }
  nav { justify-content: flex-start; gap: 10px 14px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  h1 { font-size: 38px; }
  .grid, .grid.two, .split { grid-template-columns: 1fr; }
  .download-box { align-items: stretch; flex-direction: column; }
}
@media (max-width: 420px) {
  .topbar, .hero, .section, .page, footer { padding-left: 18px; padding-right: 18px; }
  h1 { font-size: 34px; }
  .hero-card { align-items: flex-start; flex-direction: column; }
}