:root {
  color-scheme: light;
  --background: #f3f4ef;
  --surface: #ffffff;
  --text: #151815;
  --muted: #60655f;
  --line: #d7dcd5;
  --brand: #1f5f3b;
  --brand-dark: #18492d;
  --shadow: 0 18px 40px rgba(21, 24, 21, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.home-page {
  min-height: 100vh;
}

.home-header,
.home-footer,
.hero-inner,
.info-section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.home-header,
.home-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
}

.brand,
.home-nav,
.hero-actions,
.footer-links {
  display: flex;
  align-items: center;
}

.brand {
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
}

.home-nav,
.footer-links {
  gap: 18px;
}

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

.home-nav a:hover,
.footer-links a:hover,
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero {
  padding: 36px 0 24px;
}

.hero-inner {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #ffffff;
  box-shadow: var(--shadow);
  padding: clamp(36px, 8vw, 88px);
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
}

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

h1,
h2 {
  line-height: 1.08;
}

h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 8vw, 5.4rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
}

.hero-copy {
  max-width: 58ch;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 12px 18px;
  font-weight: 700;
  text-decoration: none;
}

.button.primary {
  background: #ffffff;
  color: var(--brand-dark);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.34);
  color: #ffffff;
}

.info-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: 24px 0 72px;
}

.info-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 36px);
}

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

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--brand-dark);
  font-weight: 700;
}

.home-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

.home-footer p {
  margin: 0;
}

@media (max-width: 720px) {
  .home-header,
  .home-footer,
  .home-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .info-section {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}
