:root {
  --ink: #162033;
  --muted: #64748b;
  --line: rgba(226, 232, 240, 0.9);
  --paper: #ffffff;
  --accent: #4f46e5;
  --accent-dark: #3730a3;
  --leaf: #286047;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #f8fafc;
}

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

.home-page {
  min-height: 100vh;
  background: var(--paper);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 16, 29, 0.76) 0%, rgba(8, 16, 29, 0.44) 38%, rgba(8, 16, 29, 0.08) 78%),
    linear-gradient(180deg, rgba(8, 16, 29, 0.2) 0%, rgba(8, 16, 29, 0.08) 58%, rgba(248, 250, 252, 0.92) 100%);
  z-index: -1;
}

.home-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(24px, 6vw, 80px);
  color: #ffffff;
}

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

.brand__mark {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(14px);
}

.brand__text {
  font-size: 18px;
  letter-spacing: 0;
}

.home-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 650;
}

.home-nav a {
  opacity: 0.88;
}

.home-nav a:hover {
  opacity: 1;
}

.hero__content {
  width: min(620px, calc(100% - 48px));
  margin-left: clamp(24px, 8vw, 112px);
  color: #ffffff;
}

.hero__eyebrow {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  color: #c7f9d4;
}

.hero h1 {
  margin: 0;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: 0;
  max-width: 760px;
}

.hero__summary {
  width: min(540px, 100%);
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
}

.btn--primary {
  background: #ffffff;
  color: var(--leaf);
}

.btn--primary:hover {
  background: #ecfccb;
}

.btn--ghost {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

@media (max-width: 900px) {
  .hero {
    min-height: 86vh;
    align-items: flex-end;
    padding-bottom: 72px;
  }

  .home-header {
    padding: 18px 20px;
  }

  .home-nav {
    gap: 14px;
  }

  .hero__content {
    margin: 0 20px;
  }

  .hero__summary {
    font-size: 16px;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: 36px;
  }

  .btn {
    width: 100%;
  }
}
