:root {
  --ink: #08253f;
  --muted: #556b78;
  --soft: #eef8f5;
  --soft-2: #f7fbfa;
  --line: #dbe8e4;
  --green: #07845d;
  --green-dark: #03664b;
  --teal: #0b6f7d;
  --gold: #e8a72e;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(8, 37, 63, 0.11);
  --radius: 18px;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(7, 132, 93, 0.11), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #f7fbfa 48%, #ffffff 100%);
  color: var(--ink);
}

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

.page {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(219, 232, 228, 0.78);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 56px;
  height: auto;
  display: block;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #274556;
  font-size: 0.94rem;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(7, 132, 93, 0.18);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.menu-toggle:hover {
  transform: translateY(-1px);
  background: var(--green-dark);
  box-shadow: 0 14px 26px rgba(7, 132, 93, 0.22);
}

.nav-links a {
  padding: 8px 4px;
}

.nav-links .button {
  min-width: 156px;
  padding-left: 24px;
  padding-right: 24px;
}

.nav-links a:not(.button):hover {
  color: var(--green);
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(7, 132, 93, 0.21);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--green-dark);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(7, 132, 93, 0.26);
}

.button.secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}

.button.secondary:hover {
  background: var(--soft);
  color: var(--green-dark);
}

.hero {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 84px 0 64px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #e6f6ef;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: clamp(2.75rem, 5vw, 4.7rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  color: #375665;
  font-size: clamp(1.03rem, 1.7vw, 1.2rem);
  line-height: 1.65;
}

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

.hero-card {
  max-width: 520px;
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card-top {
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(8, 37, 63, 0.95), rgba(4, 105, 78, 0.92)),
    var(--ink);
  color: var(--white);
}

.hero-card-top img {
  width: 92px;
  height: auto;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
}

.hero-card-top h2 {
  margin: 20px 0 8px;
  font-size: 1.7rem;
  line-height: 1.12;
}

.hero-card-top p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.app-download {
  padding-top: 0;
}

.download-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  border: 1px solid rgba(7, 132, 93, 0.24);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(7, 132, 93, 0.12), rgba(232, 167, 46, 0.12)),
    var(--white);
  padding: 30px;
  box-shadow: var(--shadow);
}

.download-copy h2 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.08;
}

.download-copy .section-lead {
  margin-bottom: 0;
}

.download-actions {
  display: grid;
  gap: 12px;
  width: min(100%, 280px);
}

.download-button {
  min-height: 54px;
  font-size: 1.02rem;
}

.download-note {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.45;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.stat {
  padding: 22px;
  background: var(--white);
}

.stat strong {
  display: block;
  font-size: 1.5rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 58px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
}

.section-lead {
  max-width: 760px;
  color: #496675;
  font-size: 1.05rem;
  line-height: 1.68;
}

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
  box-shadow: 0 10px 28px rgba(8, 37, 63, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(7, 132, 93, 0.36);
  box-shadow: 0 18px 36px rgba(8, 37, 63, 0.1);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: var(--soft);
  color: var(--green-dark);
  font-weight: 900;
}

.card h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.card p,
.card li {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
  align-items: stretch;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  padding: 28px;
  box-shadow: var(--shadow);
}

.list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list li {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: 14px;
  background: var(--soft-2);
  color: #395766;
}

.check {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e1f5ed;
  color: var(--green-dark);
  font-weight: 900;
}

.policy-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.policy-link {
  min-height: 120px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 20px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.policy-link:hover {
  transform: translateY(-3px);
  border-color: rgba(7, 132, 93, 0.32);
  background: #fbfffd;
}

.policy-link strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.policy-link span {
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-band {
  border: 1px solid rgba(7, 132, 93, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(7, 132, 93, 0.1), rgba(11, 111, 125, 0.08)),
    var(--white);
  padding: 34px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.contact-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  padding: 18px;
}

.contact-item span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-item strong {
  display: block;
  margin-top: 6px;
  overflow-wrap: anywhere;
}

.footer {
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.legal-main {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0 74px;
}

.legal-hero {
  padding: 28px 0 18px;
}

.legal-hero h1 {
  margin-bottom: 12px;
  font-size: clamp(2.2rem, 6vw, 4rem);
}

.legal-hero .section-lead {
  max-width: 760px;
}

.legal-section {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 26px;
}

.legal-section h2 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.legal-section p,
.legal-section li {
  color: #425f6e;
}

.legal-section ul {
  margin: 0;
  padding-left: 20px;
}

.fade-in {
  animation: rise 560ms ease both;
}

.fade-in.delay-1 {
  animation-delay: 80ms;
}

.fade-in.delay-2 {
  animation-delay: 150ms;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .nav {
    position: relative;
    align-items: center;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: 12px 14px;
    border-radius: 12px;
  }

  .nav-links a:hover {
    background: var(--soft);
  }

  .hero,
  .download-panel,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 46px;
  }

  .grid,
  .policy-strip,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .nav,
  .hero,
  .section,
  .footer-inner,
  .legal-main {
    width: min(100% - 28px, 1160px);
  }

  .brand img {
    width: 48px;
  }

  .hero-actions,
  .footer-inner {
    flex-direction: column;
  }

  .grid,
  .policy-strip,
  .contact-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .hero-card-top,
  .panel,
  .contact-band,
  .legal-section {
    padding: 22px;
  }

  .legal-main {
    padding-top: 22px;
    padding-bottom: 48px;
  }

  .legal-hero {
    padding: 10px 0 12px;
  }

  .section {
    padding: 42px 0;
  }

  .button {
    width: 100%;
  }

  .download-panel {
    padding: 22px;
  }

  .download-actions {
    width: 100%;
  }
}
