:root {
  color-scheme: light;
  --text: #13241f;
  --muted: #5d7068;
  --green: #2f7a5c;
  --green-dark: #215b45;
  --teal: #16858c;
  --coral: #c65c4a;
  --panel: rgba(255, 255, 255, 0.84);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

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

.landing {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100dvh;
  overflow: hidden;
  padding: clamp(18px, 4vw, 56px);
  background:
    linear-gradient(135deg, rgba(245, 251, 248, 0.92), rgba(238, 248, 244, 0.86)),
    #f3f8f5;
}

.landing-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(19, 36, 31, 0.22), rgba(19, 36, 31, 0.02) 46%, rgba(19, 36, 31, 0.16)),
    url("/legacy-crm/web/static/alcea-hero.jpg") center / cover no-repeat;
  filter: blur(2px);
  opacity: 0.48;
  transform: scale(1.03);
}

.landing::after {
  content: "";
  position: absolute;
  inset: auto -20% -38% 42%;
  height: 58%;
  border-radius: 50%;
  background: rgba(198, 92, 74, 0.16);
  filter: blur(50px);
}

.hero {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: clamp(22px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: 0 28px 80px rgba(21, 54, 42, 0.18);
  backdrop-filter: blur(14px);
}

.brand-mark {
  width: fit-content;
  margin-bottom: 16px;
  border: 1px solid rgba(47, 122, 92, 0.24);
  border-radius: 999px;
  background: rgba(223, 244, 235, 0.82);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
  padding: 7px 13px;
}

h1 {
  max-width: 600px;
  margin: 0;
  font-size: clamp(28px, 4.2vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

p {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.55vw, 18px);
  line-height: 1.55;
}

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

a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  padding: 0 20px;
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    background-color 0.16s ease;
}

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

.primary-link {
  background: linear-gradient(135deg, var(--teal), var(--green));
  box-shadow: 0 14px 28px rgba(22, 133, 140, 0.22);
  color: #fff;
}

.secondary-link {
  background: rgba(255, 255, 255, 0.82);
  color: var(--green-dark);
  box-shadow: 0 10px 24px rgba(21, 54, 42, 0.09);
}

@media (max-width: 620px) {
  .landing {
    align-items: end;
    padding: 14px;
  }

  .hero {
    width: 100%;
    border-radius: 14px;
  }

  .actions {
    display: grid;
  }
}
