* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  min-height: 100vh;
  margin: 0;
  color: #1d1f21;
  background: #f7f4ec;
}

.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 68px;
  align-items: center;
  gap: 28px;
  padding: 10px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(29, 31, 33, 0.12);
  background: rgba(255, 255, 255, 0.88);
}

.topbar__brand {
  color: #1d1f21;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
}

.app-tabs {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 6px;
}

.app-tab {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 9px;
  padding: 7px 14px 7px 8px;
  border: 1px solid rgba(46, 111, 90, 0.2);
  border-radius: 7px;
  color: #183b31;
  background: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.app-tab img {
  display: block;
  flex: 0 0 28px;
  border-radius: 6px;
}

.app-tab:hover,
.app-tab:focus-visible {
  border-color: #2e6f5a;
  background: #f2faf6;
  transform: translateY(-1px);
}

.app-tab:focus-visible {
  outline: 3px solid rgba(46, 111, 90, 0.2);
  outline-offset: 2px;
}

.page {
  min-height: calc(100vh - 68px);
  overflow: hidden;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 68px);
  place-items: center;
  padding: clamp(32px, 6vw, 72px);
  isolation: isolate;
}

.hero__visual {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(255, 199, 72, 0.68), rgba(255, 118, 68, 0.38) 42%, rgba(64, 151, 120, 0.36)),
    #f7f4ec;
  overflow: hidden;
}

.mango {
  position: absolute;
  width: min(48vw, 520px);
  aspect-ratio: 0.82;
  left: 58%;
  top: 47%;
  transform: translate(-50%, -50%) rotate(-18deg);
}

.mango__body {
  position: absolute;
  inset: 8% 9% 5% 11%;
  display: block;
  border-radius: 58% 42% 56% 44% / 54% 44% 56% 46%;
  background:
    radial-gradient(circle at 32% 22%, rgba(255, 244, 183, 0.95) 0 13%, transparent 14%),
    linear-gradient(145deg, #ffd55a 5%, #ff9f37 46%, #e75d36 100%);
  box-shadow: 0 42px 90px rgba(109, 64, 21, 0.22);
}

.mango__leaf {
  position: absolute;
  width: 33%;
  height: 18%;
  right: 22%;
  top: 2%;
  display: block;
  border-radius: 70% 8% 70% 8%;
  background: linear-gradient(135deg, #2f8c61, #9dc94c);
  transform: rotate(26deg);
}

.flow {
  position: absolute;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 18px 50px rgba(41, 88, 76, 0.14);
}

.flow--one {
  width: 52vw;
  left: -8vw;
  top: 30%;
  transform: rotate(-12deg);
}

.flow--two {
  width: 44vw;
  right: -7vw;
  bottom: 27%;
  transform: rotate(-12deg);
}

.flow--three {
  width: 28vw;
  left: 14vw;
  bottom: 18%;
  transform: rotate(-12deg);
}

.hero__content {
  width: min(720px, 100%);
  margin-right: auto;
  padding: clamp(12px, 3vw, 32px) 0;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  color: #2e6f5a;
}

h1 {
  max-width: 9ch;
  margin: 0;
  font-size: 112px;
  line-height: 0.88;
  letter-spacing: 0;
}

.intro {
  max-width: 560px;
  margin: 28px 0 0;
  font-size: 28px;
  line-height: 1.35;
  color: #33383a;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  margin-top: 34px;
  padding: 0 16px;
  border: 1px solid rgba(46, 111, 90, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  font-weight: 700;
  color: #225f4d;
}

.status__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2eaa70;
  box-shadow: 0 0 0 6px rgba(46, 170, 112, 0.16);
}

@media (max-width: 720px) {
  .topbar {
    min-height: 64px;
    gap: 16px;
    padding: 9px 16px;
  }

  .topbar__brand {
    font-size: 16px;
  }

  .app-tab {
    min-height: 44px;
  }

  .page,
  .hero {
    min-height: calc(100vh - 64px);
  }

  .hero {
    align-items: end;
    padding: 28px;
  }

  .mango {
    width: 88vw;
    left: 62%;
    top: 34%;
  }

  .flow--one {
    width: 86vw;
    top: 22%;
  }

  .flow--two {
    width: 72vw;
    bottom: 45%;
  }

  .flow--three {
    display: none;
  }

  .hero__content {
    padding-bottom: 20px;
  }

  h1 {
    font-size: 48px;
  }

  .intro {
    margin-top: 20px;
    font-size: 20px;
  }
}
