:root {
  --bg: #f5efe7;
  --ink: #1f2522;
  --muted: #4b5b53;
  --surface: #fffaf4;
  --accent: #0e8f75;
  --accent-2: #f08c2e;
  --ring: rgba(14, 143, 117, 0.2);
  --radius: 18px;
  --shadow: 0 20px 50px rgba(23, 34, 29, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 15% 15%, #fff9f1, transparent 50%),
    radial-gradient(circle at 85% 5%, #dbf4e8, transparent 45%),
    radial-gradient(circle at 50% 90%, #ffe7c9, transparent 40%),
    var(--bg);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Syne", sans-serif;
  line-height: 1.1;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 5vw, 4.2rem);
  letter-spacing: -0.03em;
  max-width: 18ch;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

p {
  margin-top: 0;
}

.bg-shapes {
  inset: 0;
  position: fixed;
  pointer-events: none;
  z-index: -1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.shape-a {
  width: 260px;
  height: 260px;
  top: -60px;
  right: 10%;
  background: linear-gradient(140deg, #f08c2e, #ffd1a2);
  opacity: 0.25;
}

.shape-b {
  width: 180px;
  height: 180px;
  top: 40%;
  left: -60px;
  background: linear-gradient(145deg, #0e8f75, #85e0cc);
  opacity: 0.2;
}

.shape-c {
  width: 320px;
  height: 320px;
  bottom: -120px;
  right: -80px;
  background: linear-gradient(140deg, #ffca94, #fff3df);
  opacity: 0.4;
}

.site-header,
main,
.site-footer {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
}

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(23, 34, 29, 0.2);
}

.hero {
  padding: 4rem 0 3rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1.4rem;
  align-items: center;
}

.hero-image-wrap {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(31, 37, 34, 0.08);
  box-shadow: var(--shadow);
  background: #fff;
}

.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}

.eyebrow {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.hero-copy {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  margin-top: 1.6rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.button {
  border: 0;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.78rem 1.2rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button.primary {
  background: linear-gradient(130deg, var(--accent), #0ba688);
  color: #f5fffc;
  box-shadow: 0 10px 22px rgba(14, 143, 117, 0.28);
}

.button.ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(31, 37, 34, 0.15);
  backdrop-filter: blur(4px);
}

.button.link {
  color: var(--ink);
  background: transparent;
}

.button:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

.hero-metrics {
  list-style: none;
  margin: 2.2rem 0 0;
  padding: 0;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-metrics li {
  min-width: 140px;
  background: rgba(255, 250, 244, 0.9);
  border: 1px solid rgba(31, 37, 34, 0.08);
  border-radius: var(--radius);
  padding: 0.85rem 0.95rem;
}

.hero-metrics strong {
  font-family: "Syne", sans-serif;
  font-size: 1.35rem;
  display: block;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  margin: 4rem 0;
}

.section-alt {
  background: rgba(255, 250, 244, 0.72);
  border: 1px solid rgba(31, 37, 34, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: clamp(1.2rem, 3vw, 2.3rem);
}

.grid {
  display: grid;
  gap: 1rem;
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid rgba(31, 37, 34, 0.08);
  border-radius: var(--radius);
  padding: 1rem;
}

.card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.8rem;
  border: 1px solid rgba(31, 37, 34, 0.08);
}

.card p {
  color: var(--muted);
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.95rem;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.9rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(31, 37, 34, 0.08);
  border-radius: var(--radius);
  padding: 0.9rem;
}

.steps span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(140deg, var(--accent), var(--accent-2));
}

.cta {
  background: linear-gradient(130deg, #0d7f69, #0f9a7f);
  color: #f3fffb;
  border-radius: 24px;
  padding: clamp(1.4rem, 3.5vw, 3rem);
  box-shadow: 0 22px 40px rgba(14, 143, 117, 0.28);
}

.cta h2,
.cta p {
  max-width: 48ch;
}

.cta .button.primary {
  background: #fff5e7;
  color: #0d5f4f;
  display: inline-block;
  margin-top: 0.5rem;
}

.site-footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 1.4rem 0 2rem;
  color: var(--muted);
  font-size: 0.93rem;
}

.footer-link {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-logo {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(31, 37, 34, 0.15);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .hero-image {
    min-height: 260px;
  }

  .cards-3 {
    grid-template-columns: 1fr;
  }

  .site-header {
    gap: 0.8rem;
  }

  .hero {
    padding-top: 2.5rem;
  }
}

@media (max-width: 640px) {
  .site-header {
    flex-wrap: wrap;
  }

  .button.ghost {
    width: 100%;
    text-align: center;
  }

  .hero-metrics li {
    flex: 1;
  }
}
