:root {
  --white: #ffffff;
  --soft: #f6f8f8;
  --soft-2: #eef3f4;
  --line: #dde6e8;
  --text: #17292f;
  --muted: #5b6a70;
  --blue: #063b73;
  --blue-dark: #052b54;
  --green: #65a633;
  --petrol: #073d47;
  --shadow: 0 28px 80px rgba(5, 43, 84, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo-link img {
  display: block;
  width: clamp(220px, 26vw, 430px);
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a {
  position: relative;
  padding-bottom: 4px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width .2s ease;
}

.nav a:hover::after {
  width: 100%;
}

.hero {
  min-height: calc(100vh - 86px);
  display: flex;
  align-items: center;
  padding: 86px 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.9) 45%, rgba(255,255,255,.68) 100%),
    radial-gradient(circle at 88% 24%, rgba(101,166,51,.14), transparent 28%),
    linear-gradient(135deg, var(--soft), var(--white));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) 390px;
  gap: 72px;
  align-items: center;
}

.kicker {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 800;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(3.2rem, 7.6vw, 7.4rem);
  line-height: .92;
  letter-spacing: -.07em;
  max-width: 980px;
  color: var(--blue-dark);
}

h2 {
  font-size: clamp(2.1rem, 4vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: -.055em;
  color: var(--blue-dark);
}

.lead {
  max-width: 820px;
  margin-top: 30px;
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  color: var(--text);
}

.lead.secondary {
  margin-top: 14px;
  color: var(--muted);
}

.actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  min-height: 50px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  transition: .2s ease;
}

.btn.primary {
  background: var(--blue);
  color: var(--white);
}

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

.btn:hover {
  transform: translateY(-2px);
}

.status-card {
  padding: 38px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.status-card .since {
  display: block;
  color: var(--green);
  font-weight: 800;
  margin-bottom: 18px;
}

.status-card h2 {
  font-size: 2rem;
}

.status-card p {
  margin-top: 18px;
  color: var(--muted);
}

.section {
  padding: 108px 0;
}

.story-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
}

.story-text p {
  color: var(--muted);
  font-size: 1.15rem;
  margin-bottom: 22px;
}

.services {
  background: var(--soft);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 52px;
}

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

.cards article {
  min-height: 210px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  transition: .22s ease;
}

.cards article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.cards h3 {
  margin-bottom: 12px;
  color: var(--blue-dark);
  font-size: 1.18rem;
}

.cards p {
  color: var(--muted);
}

.help {
  background: var(--blue-dark);
  color: var(--white);
}

.help h2 {
  max-width: 1000px;
  color: var(--white);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.tags span {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: 10px 16px;
  color: rgba(255,255,255,.84);
}

.soon {
  text-align: center;
}

.narrow {
  max-width: 850px;
}

.soon p:last-child {
  max-width: 740px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.footer {
  padding: 58px 0;
  background: #061f3d;
  color: var(--white);
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
}

.footer-logo {
  display: block;
  width: min(360px, 100%);
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-description {
  margin-top: 20px;
  color: rgba(255,255,255,.72);
}

.footer-contact {
  display: grid;
  gap: 9px;
  min-width: min(360px, 100%);
}

.footer-contact strong {
  margin-bottom: 8px;
  color: var(--white);
}

.footer-contact a {
  color: rgba(255,255,255,.78);
}

.footer-contact a:hover {
  color: var(--white);
}

@media (max-width: 980px) {
  .hero-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .status-card {
    max-width: 560px;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav {
    display: none;
  }

  .logo-link img {
    width: clamp(230px, 52vw, 400px);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .header-inner {
    min-height: 76px;
  }

  .logo-link img {
    width: 260px;
  }

  .hero {
    min-height: auto;
    padding: 68px 0;
  }

  .section {
    padding: 72px 0;
  }

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

  .status-card {
    padding: 28px;
  }

  .footer-grid {
    flex-direction: column;
  }

  .footer-logo {
    filter: none;
    background: white;
    border-radius: 12px;
    padding: 10px;
  }
}
