@import url('https://fonts.googleapis.com/css2?family=Marmelad&display=swap');

:root {
  --landing-bg: #ffffff;
  --landing-bg-soft: #ffffff;
  --landing-surface: #ffffff;
  --landing-text: #1c5950;
  --landing-muted: #24564e;
  --landing-accent: #1c5950;
  --landing-accent-dark: #15443d;
  --landing-pink: #f99096;
  --landing-border: #f2b6bb;
  --landing-shadow: 0 18px 42px rgba(28, 89, 80, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--landing-bg);
  color: var(--landing-text);
  font-family: "Marmelad", "Segoe UI", sans-serif;
  position: relative;
  overflow-x: hidden;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  width: 460px;
  height: 460px;
  right: -140px;
  top: -160px;
  background: radial-gradient(circle, rgba(249, 144, 150, 0.34), rgba(249, 144, 150, 0));
}

.orb-2 {
  width: 440px;
  height: 440px;
  left: -160px;
  bottom: -190px;
  background: radial-gradient(circle, rgba(28, 89, 80, 0.2), rgba(28, 89, 80, 0));
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  width: calc(100% - 48px);
  margin: 14px 24px 0;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #d9e7e4;
  border-radius: 18px;
  backdrop-filter: blur(8px);
}

.brand {
  text-decoration: none;
  color: var(--landing-text);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 8px 16px rgba(28, 89, 80, 0.18);
}

.main-nav {
  display: flex;
  gap: 24px;
}

.main-nav a {
  text-decoration: none;
  color: #1c5950;
  font-weight: 700;
  font-synthesis: weight;
  -webkit-text-stroke: 0.2px currentColor;
  text-shadow: 0 0 0.01px currentColor;
  font-size: 0.95rem;
}

.main-nav a:hover {
  color: var(--landing-accent-dark);
}

.btn {
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.btn-login {
  border: 1px solid transparent;
  color: #fff;
  background: linear-gradient(135deg, var(--landing-accent), var(--landing-accent-dark));
  font-weight: 900;
}

.btn-primary {
  background: linear-gradient(135deg, var(--landing-accent), var(--landing-accent-dark));
  color: #fff;
  box-shadow: 0 10px 24px rgba(28, 89, 80, 0.24);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--landing-accent-dark), var(--landing-accent));
}

.btn-secondary {
  color: #ffffff;
  border: 1px solid #1c5950;
  background: #f99096;
  box-shadow: 0 10px 22px rgba(249, 144, 150, 0.34);
}

.btn-secondary:hover {
  background: #1c5950;
  border-color: #1c5950;
}

.cover-strip {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 12px 24px 0;
}

main {
  width: 100%;
  padding: 16px 24px 48px;
}

.hero {
  border: 1px solid #dce9e6;
  background:
    linear-gradient(140deg, rgba(249, 144, 150, 0.1), rgba(249, 144, 150, 0) 35%),
    linear-gradient(220deg, rgba(28, 89, 80, 0.08), rgba(28, 89, 80, 0) 45%),
    #ffffff;
  border-radius: 0;
  margin-left: -24px;
  margin-right: -24px;
  padding: 62px 80px;
  box-shadow: var(--landing-shadow);
  text-align: center;
}

.eyebrow {
  margin: 0;
  color: var(--landing-accent);
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.hero h1 {
  margin: 14px 0 14px;
  font-family: "Marmelad", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  max-width: none;
}

.lead {
  margin: 0;
  color: var(--landing-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: none;
}

.lead-secondary {
  margin-top: 10px;
}

.hero-cover {
  margin-top: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #edf3f1;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(28, 89, 80, 0.14);
}

.hero-cover-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-note {
  margin-top: 24px;
  color: #f99096;
  font-size: 0.95rem;
  font-weight: 600;
}

.features {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-card {
  background: #ffffff;
  border: 1px solid #dce9e6;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(28, 89, 80, 0.08);
}

.feature-card h2 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  color: var(--landing-accent);
}

.feature-card p {
  margin: 0;
  color: var(--landing-muted);
  line-height: 1.6;
}

.workflow {
  margin-top: 18px;
  border: 1px solid #dce9e6;
  border-radius: 20px;
  background: #ffffff;
  padding: 24px;
  box-shadow: 0 10px 24px rgba(28, 89, 80, 0.08);
}

.workflow h2 {
  margin: 0 0 16px;
  font-size: 1.3rem;
}

.workflow-text {
  margin: 0;
  color: var(--landing-muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.step {
  border: 1px dashed #f2a7ae;
  border-radius: 14px;
  background: #fff9fa;
  padding: 14px;
  color: var(--landing-muted);
}

.step span {
  display: inline-flex;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--landing-pink);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  margin-right: 8px;
}

.site-footer {
  width: 100%;
  padding: 12px 24px 28px;
  color: var(--landing-muted);
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--landing-accent-dark);
}

.copyright {
  margin-top: 6px;
  font-size: 0.8rem;
}

@media (max-width: 960px) {
  .features,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero {
    margin-left: -16px;
    margin-right: -16px;
    padding: 34px 24px;
  }

  .hero-cover-image {
    max-height: 300px;
  }

  .site-header {
    flex-wrap: wrap;
    width: calc(100% - 32px);
    margin: 10px 16px 0;
  }

  .cover-strip,
  main,
  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    padding-top: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 16px;
    width: calc(100% - 20px);
    margin: 10px 10px 0;
  }

  main {
    padding: 12px 10px 40px;
  }

  .hero {
    margin-left: -10px;
    margin-right: -10px;
    padding: 28px 14px;
  }

  .cover-strip {
    padding: 10px 10px 0;
  }

  .site-footer {
    padding-left: 10px;
    padding-right: 10px;
  }

  .brand-text {
    font-size: 0.92rem;
  }

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

  .btn-login {
    padding: 10px 14px;
    font-size: 0.82rem;
  }

  .hero-actions .btn {
    width: 100%;
  }
}
