:root {
  color-scheme: light;
  --bg: #f4efe6;
  --panel: rgba(255, 255, 255, 0.62);
  --panel-strong: rgba(255, 255, 255, 0.84);
  --text: #101821;
  --muted: #5c6672;
  --accent: #0d5a54;
  --accent-2: #8f6a33;
  --border: rgba(16, 24, 33, 0.1);
  --shadow: 0 28px 70px rgba(18, 28, 41, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(13, 90, 84, 0.14), transparent 32%),
    radial-gradient(circle at top right, rgba(143, 106, 51, 0.14), transparent 27%),
    linear-gradient(180deg, #f7f4ee 0%, var(--bg) 52%, #eee5d8 100%);
  min-height: 100vh;
}

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

.backdrop {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(15, 23, 32, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 32, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 82%);
}

.page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 40px;
}

.topbar,
.hero,
.section,
.cta {
  animation: rise 0.8s ease both;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 28px;
}

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

.brand > div {
  display: grid;
  gap: 2px;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(16, 24, 33, 0.12);
}

.brand-name {
  font-size: 0.98rem;
}

.brand-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #1d8c7f);
  box-shadow: 0 0 0 8px rgba(10, 92, 85, 0.1);
}

.ghost-link {
  font-size: 0.95rem;
  color: var(--muted);
}

.hero {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 24px;
  align-items: center;
  padding: 28px 0 44px;
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  color: var(--accent);
  font-weight: 800;
}

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

h1 {
  font-size: clamp(3rem, 8vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  max-width: 10ch;
  margin-bottom: 20px;
}

.lede {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 58ch;
  margin-bottom: 28px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--text);
  color: #fff;
  box-shadow: var(--shadow);
}

.button.primary.dark {
  background: var(--accent);
}

.button.secondary {
  background: var(--panel);
  backdrop-filter: blur(12px);
}

.hero-card,
.feature,
.cta {
  background: var(--panel-strong);
  backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 26px;
}

.hero-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.hero-logo {
  width: min(100%, 260px);
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(245, 239, 228, 0.9));
  padding: 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.card-badge {
  display: inline-flex;
  margin-bottom: 22px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 800;
}

.metric {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(15, 23, 32, 0.08);
}

.metric:last-of-type {
  border-bottom: 0;
}

.metric span {
  color: var(--muted);
}

.metric strong {
  font-size: 1.6rem;
  letter-spacing: -0.04em;
}

.hero-card p {
  margin-top: 24px;
  color: var(--muted);
  line-height: 1.75;
}

.section {
  padding: 18px 0 30px;
}

.section-heading {
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 0;
  max-width: 14ch;
}

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

.feature {
  padding: 24px;
}

.feature h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.feature p,
.split-text {
  color: var(--muted);
  line-height: 1.75;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.cta {
  margin-top: 6px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

@media (max-width: 900px) {
  .hero,
  .grid,
  .split,
  .cta {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero {
    padding-top: 12px;
  }

  h1 {
    max-width: 12ch;
  }
}

@media (max-width: 640px) {
  .page {
    width: min(100% - 22px, 1120px);
  }

  .topbar {
    gap: 16px;
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-card,
  .feature,
  .cta {
    border-radius: 22px;
  }

  .cta {
    padding: 22px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }
}
